aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr_colpivoting.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-18 17:40:45 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-11-18 17:40:45 -0500
commit126a8e6a69fb3bb21e3971fa04d71433bfba8b3d (patch)
tree0b0f899a9ff2870d765eefd68b4da693a7a7469e /test/qr_colpivoting.cpp
parent40865fa28cab9473959458ec890d68b9df398dc9 (diff)
fix remaining bug in ColPivHouseholderQR, so now all tests pass again
Diffstat (limited to 'test/qr_colpivoting.cpp')
-rw-r--r--test/qr_colpivoting.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/qr_colpivoting.cpp b/test/qr_colpivoting.cpp
index bdf273926..600a94133 100644
--- a/test/qr_colpivoting.cpp
+++ b/test/qr_colpivoting.cpp
@@ -57,8 +57,6 @@ template<typename MatrixType> void qr()
MatrixType c = MatrixType::Zero(rows,cols);
for(int i = 0; i < cols; ++i) c.col(qr.colsPermutation().indices().coeff(i)) = b.col(i);
- std::cout << "m1:\n" << m1 << std::endl;
- std::cout << "c:\n" << c << std::endl;
VERIFY_IS_APPROX(m1, c);
MatrixType m2 = MatrixType::Random(cols,cols2);