1
0
mirror of https://github.com/paboyle/Grid.git synced 2026-03-20 03:06:09 +00:00

trying one more thing

This commit is contained in:
Patrick Oare
2025-08-14 14:47:38 -04:00
parent 16d3c9cf75
commit 19f0737b98

View File

@@ -613,6 +613,7 @@ class KrylovSchur {
tmp = Zero();
for (int j = 0; j < N; j++) {
std::cout << GridLogDebug << "Adding R(j, i) = " << R(j, i) << " to rotated" << std::endl;
std::cout << GridLogDebug << "Norm of U[j] is " << norm2(U[j]) << " to rotated" << std::endl;
tmp = tmp + U[j] * R(j, i);
}
std::cout << GridLogDebug << "rotated norm at i = " << i << " is: " << norm2(tmp) << std::endl;