aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/schur_real.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/schur_real.cpp')
-rw-r--r--test/schur_real.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/schur_real.cpp b/test/schur_real.cpp
index d0aca4308..bcb19c936 100644
--- a/test/schur_real.cpp
+++ b/test/schur_real.cpp
@@ -57,7 +57,6 @@ template<typename MatrixType> void schur(int size = MatrixType::ColsAtCompileTim
RealSchur<MatrixType> schurOfA(A);
MatrixType U = schurOfA.matrixU();
MatrixType T = schurOfA.matrixT();
- std::cout << "T = \n" << T << "\n\n";
verifyIsQuasiTriangular(T);
VERIFY_IS_APPROX(A, U * T * U.transpose());
}