aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr_colpivoting.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-16 14:19:59 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-16 14:19:59 -0400
commita4fd0aa25b1de432976ab9dc371abf9073db0fab (patch)
tree2e6465086f4238958ebef56d770c2772ca24ecf4 /test/qr_colpivoting.cpp
parent46be9c9ac14fc951599ecd5dc7cd3c1a44f8b9d5 (diff)
* fix bug in col-pivoting qr, forgot to swap the colNorms when swapping cols
* add Gael a copyright line
Diffstat (limited to 'test/qr_colpivoting.cpp')
-rw-r--r--test/qr_colpivoting.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/qr_colpivoting.cpp b/test/qr_colpivoting.cpp
index 283855451..9c387005a 100644
--- a/test/qr_colpivoting.cpp
+++ b/test/qr_colpivoting.cpp
@@ -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>() );