From ff6a46105d86e92753858c1b2aea8bcaf4575819 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 16 Apr 2010 10:13:32 -0400 Subject: * Refactoring of the class hierarchy: introduction of DenseDirectAccessBase, removal of extra _Base/_Options template parameters. * Introduction of strides-at-compile-time so for example the optimized code really knows when it needs to evaluate to a temporary * StorageKind / XprKind * Quaternion::setFromTwoVectors: use JacobiSVD instead of SVD * ComplexSchur: support the 1x1 case --- test/householder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/householder.cpp') diff --git a/test/householder.cpp b/test/householder.cpp index d98780872..2d025e702 100644 --- a/test/householder.cpp +++ b/test/householder.cpp @@ -119,7 +119,7 @@ template void householder(const MatrixType& m) void test_householder() { - for(int i = 0; i < 2*g_repeat; i++) { + for(int i = 0; i < g_repeat; i++) { CALL_SUBTEST_1( householder(Matrix()) ); CALL_SUBTEST_2( householder(Matrix()) ); CALL_SUBTEST_3( householder(Matrix()) ); -- cgit v1.2.3