Add (failing) test for computing HouseholderQR of a 1x1 matrix.

This commit is contained in:
Jitse Niesen 2010-03-01 13:46:41 +00:00
parent 2d7bd1ec91
commit a1ac56a7c7

View File

@ -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++) {