aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/qr_colpivoting.cpp
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-02-03 10:12:10 -0800
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2016-02-03 10:12:10 -0800
commit5fb04ab2da509de116faa0f35e3038b14fd69573 (patch)
tree17f74afe2ff978c53cd48cb8b6ce3506d70b0955 /test/qr_colpivoting.cpp
parentd9a6f86cc080c54eaf78957efa44cb915d8ef179 (diff)
Fix bad line break. Don't repeat Kahan matrix test since it is deterministic.
Diffstat (limited to 'test/qr_colpivoting.cpp')
-rw-r--r--test/qr_colpivoting.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/qr_colpivoting.cpp b/test/qr_colpivoting.cpp
index 7b97292db..c777d5f94 100644
--- a/test/qr_colpivoting.cpp
+++ b/test/qr_colpivoting.cpp
@@ -213,11 +213,6 @@ void test_qr_colpivoting()
}
for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST_1( qr_kahan_matrix<MatrixXf>() );
- CALL_SUBTEST_2( qr_kahan_matrix<MatrixXd>() );
- }
-
- for(int i = 0; i < g_repeat; i++) {
CALL_SUBTEST_1( qr_invertible<MatrixXf>() );
CALL_SUBTEST_2( qr_invertible<MatrixXd>() );
CALL_SUBTEST_6( qr_invertible<MatrixXcf>() );
@@ -233,4 +228,7 @@ void test_qr_colpivoting()
// Test problem size constructors
CALL_SUBTEST_9(ColPivHouseholderQR<MatrixXf>(10, 20));
+
+ CALL_SUBTEST_1( qr_kahan_matrix<MatrixXf>() );
+ CALL_SUBTEST_2( qr_kahan_matrix<MatrixXd>() );
}