aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/boostmultiprec.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-02-16 22:25:11 +0400
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-02-16 22:25:11 +0400
commit937ad18221e940cef96617ade46e6f84e81d0b9e (patch)
treef238447b83204290526120956c0e88fed8569464 /test/boostmultiprec.cpp
parent5deeb19e7bb19c67abeac0a6cfa26ad3d14e215b (diff)
add unit test for SimplicialCholesky and Boost multiprec.
Diffstat (limited to 'test/boostmultiprec.cpp')
-rw-r--r--test/boostmultiprec.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/boostmultiprec.cpp b/test/boostmultiprec.cpp
index e06e9bdaf..bafbd3b96 100644
--- a/test/boostmultiprec.cpp
+++ b/test/boostmultiprec.cpp
@@ -55,6 +55,10 @@
#include "bdcsvd.cpp"
#endif
+#ifdef EIGEN_TEST_PART_11
+#include "simplicial_cholesky.cpp"
+#endif
+
#include <Eigen/Dense>
#undef min
@@ -197,5 +201,7 @@ void test_boostmultiprec()
CALL_SUBTEST_9(( jacobisvd(Mat(internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE), internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE/2))) ));
CALL_SUBTEST_10(( bdcsvd(Mat(internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE), internal::random<int>(EIGEN_TEST_MAX_SIZE/4, EIGEN_TEST_MAX_SIZE/2))) ));
+
+ CALL_SUBTEST_11(( test_simplicial_cholesky_T<Real,int>() ));
}