aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/qr.cpp')
-rw-r--r--test/qr.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/qr.cpp b/test/qr.cpp
index add4aa580..345ea17fd 100644
--- a/test/qr.cpp
+++ b/test/qr.cpp
@@ -157,16 +157,17 @@ void test_qr()
// CALL_SUBTEST( qr(MatrixXf(12,8)) );
// CALL_SUBTEST( qr(MatrixXcd(5,5)) );
// CALL_SUBTEST( qr(MatrixXcd(7,3)) );
+ CALL_SUBTEST( qr(MatrixXf(47,47)) );
}
for(int i = 0; i < g_repeat; i++) {
CALL_SUBTEST( qr_non_invertible<MatrixXf>() );
-// CALL_SUBTEST( qr_non_invertible<MatrixXd>() );
+ CALL_SUBTEST( qr_non_invertible<MatrixXd>() );
// TODO fix issue with complex
// CALL_SUBTEST( qr_non_invertible<MatrixXcf>() );
// CALL_SUBTEST( qr_non_invertible<MatrixXcd>() );
-// CALL_SUBTEST( qr_invertible<MatrixXf>() );
-// CALL_SUBTEST( qr_invertible<MatrixXd>() );
+ CALL_SUBTEST( qr_invertible<MatrixXf>() );
+ CALL_SUBTEST( qr_invertible<MatrixXd>() );
// TODO fix issue with complex
// CALL_SUBTEST( qr_invertible<MatrixXcf>() );
// CALL_SUBTEST( qr_invertible<MatrixXcd>() );