From 19f0737b98c615c5ce2a0e73e3316e68351f1286 Mon Sep 17 00:00:00 2001 From: Patrick Oare Date: Thu, 14 Aug 2025 14:47:38 -0400 Subject: [PATCH] trying one more thing --- Grid/algorithms/iterative/KrylovSchur.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Grid/algorithms/iterative/KrylovSchur.h b/Grid/algorithms/iterative/KrylovSchur.h index 8750ee65..d7c15e31 100644 --- a/Grid/algorithms/iterative/KrylovSchur.h +++ b/Grid/algorithms/iterative/KrylovSchur.h @@ -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;