aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-03-01 13:46:41 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-03-01 13:46:41 +0000
commita1ac56a7c783843ef312afff186a95024a9cc3c0 (patch)
treecaec676773ea2c66b3dc64e0fb362a81645ff72e
parent2d7bd1ec9124ec4e1145321626426ca7ea2e6a3b (diff)
Add (failing) test for computing HouseholderQR of a 1x1 matrix.
-rw-r--r--test/qr.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/qr.cpp b/test/qr.cpp
index f2393c13b..1ce1f46e6 100644
--- a/test/qr.cpp
+++ b/test/qr.cpp
@@ -117,6 +117,7 @@ void test_qr()
CALL_SUBTEST_3(( qr_fixedsize<Matrix<float,3,4>, 2 >() ));
CALL_SUBTEST_4(( qr_fixedsize<Matrix<double,6,2>, 4 >() ));
CALL_SUBTEST_5(( qr_fixedsize<Matrix<double,2,5>, 7 >() ));
+ CALL_SUBTEST_11( qr(Matrix<float,1,1>()) );
}
for(int i = 0; i < g_repeat; i++) {