fix remaining bug in ColPivHouseholderQR, so now all tests pass again

This commit is contained in:
Benoit Jacob
2009-11-18 17:40:45 -05:00
parent 40865fa28c
commit 126a8e6a69
2 changed files with 2 additions and 3 deletions

View File

@@ -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);