aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/umfpack_support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/umfpack_support.cpp')
-rw-r--r--test/umfpack_support.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/umfpack_support.cpp b/test/umfpack_support.cpp
index 6e459a922..f900e92c6 100644
--- a/test/umfpack_support.cpp
+++ b/test/umfpack_support.cpp
@@ -28,12 +28,10 @@
void test_umfpack_support()
{
- for(int i = 0; i < g_repeat; i++) {
- UmfPackLU<SparseMatrix<double> > umfpack_double_colmajor;
- UmfPackLU<SparseMatrix<std::complex<double> > > umfpack_cplxdouble_colmajor;
- CALL_SUBTEST_1(check_sparse_square_solving(umfpack_double_colmajor));
- CALL_SUBTEST_2(check_sparse_square_solving(umfpack_cplxdouble_colmajor));
- CALL_SUBTEST_1(check_sparse_square_determinant(umfpack_double_colmajor));
- CALL_SUBTEST_2(check_sparse_square_determinant(umfpack_cplxdouble_colmajor));
- }
+ UmfPackLU<SparseMatrix<double, ColMajor> > umfpack_double_colmajor;
+ UmfPackLU<SparseMatrix<std::complex<double> > > umfpack_cplxdouble_colmajor;
+ CALL_SUBTEST_1(check_sparse_square_solving(umfpack_double_colmajor));
+ CALL_SUBTEST_2(check_sparse_square_solving(umfpack_cplxdouble_colmajor));
+ CALL_SUBTEST_1(check_sparse_square_determinant(umfpack_double_colmajor));
+ CALL_SUBTEST_2(check_sparse_square_determinant(umfpack_cplxdouble_colmajor));
}