* fix bug in col-pivoting qr, forgot to swap the colNorms when swapping cols

* add Gael a copyright line
This commit is contained in:
Benoit Jacob
2009-09-16 14:19:59 -04:00
parent 46be9c9ac1
commit a4fd0aa25b
3 changed files with 3 additions and 3 deletions

View File

@@ -116,9 +116,7 @@ template<typename MatrixType> void qr_verify_assert()
void test_qr_colpivoting()
{
for(int i = 0; i < 1; i++) {
// FIXME : very weird bug here
// CALL_SUBTEST( qr(Matrix2f()) );
for(int i = 0; i < 1; i++) {
CALL_SUBTEST( qr<MatrixXf>() );
CALL_SUBTEST( qr<MatrixXd>() );
CALL_SUBTEST( qr<MatrixXcd>() );