From 632f5916c79e8dccba038e70237b27e7129d68ba Mon Sep 17 00:00:00 2001 From: Patrick Oare Date: Mon, 4 Aug 2025 15:43:23 -0400 Subject: [PATCH] small log change for KS --- 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 0dd6222f..8cbd8b03 100644 --- a/Grid/algorithms/iterative/KrylovSchur.h +++ b/Grid/algorithms/iterative/KrylovSchur.h @@ -366,6 +366,7 @@ class KrylovSchur { } if (doubleOrthog) { + std::cout << GridLogMessage << "Double orthogonalizing." << std::endl; for (int j = 0; j < basis.size(); j++) { coeff = innerProduct(basis[j], w); // see if there is any residual component in basis[j] direction Rayleigh(j, i) += coeff; // if coeff is non-zero, adjust Rayleigh