aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/jacobisvd.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-11 21:00:42 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-11 21:00:42 -0400
commitb8bb80400751b97a9ee8872efa7def6ebbb4b697 (patch)
tree3b9fb9db21c7dfb6f5f447ed6f1b64492636c874 /test/jacobisvd.cpp
parent5c3d21693b5c2526f4d399820375e0338e8a0ff8 (diff)
set ColPivHouseholderQR as default preconditioner for JacobiSVD
Diffstat (limited to 'test/jacobisvd.cpp')
-rw-r--r--test/jacobisvd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jacobisvd.cpp b/test/jacobisvd.cpp
index 935d0ac05..0039be388 100644
--- a/test/jacobisvd.cpp
+++ b/test/jacobisvd.cpp
@@ -159,7 +159,7 @@ template<typename MatrixType> void jacobisvd_verify_assert(const MatrixType& m)
RhsType rhs(rows);
- JacobiSVD<MatrixType, HouseholderQRPreconditioner> svd;
+ JacobiSVD<MatrixType> svd;
VERIFY_RAISES_ASSERT(svd.matrixU())
VERIFY_RAISES_ASSERT(svd.singularValues())
VERIFY_RAISES_ASSERT(svd.matrixV())