aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/schur_real.cpp
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-05-25 12:40:42 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-05-25 12:40:42 +0100
commite7dc7725549a4a52b234d7c84ead58f27aa7cf76 (patch)
tree583b9c441e44795581b95447b70e5749f017868c /test/schur_real.cpp
parente7d809d4349fd4048777be71f1c803d0b13f8fe8 (diff)
Respect MaxRowsAtCompileTime in HouseholderSequence::evalTo().
This fixes the failing test nomalloc_4. Also remove a print inserted for debugging in schur_real test.
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());
}