aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparselu.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 09:29:53 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-09 09:29:53 +0200
commit9aef0db9928e54d1b0a317b07c2cc3a9b42fe5b2 (patch)
treeac577e3ebaf2265a4498a9677dd5ce8f3e9d40e4 /test/sparselu.cpp
parent9a2447b0c95bb62bd3e5ae68bf14d2c5e66a18cf (diff)
Skip too large real-world problems for solvers that do not scale (e.g., SimplicialLLT without reordering)
Diffstat (limited to 'test/sparselu.cpp')
-rw-r--r--test/sparselu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sparselu.cpp b/test/sparselu.cpp
index 37eb069a9..231c857ad 100644
--- a/test/sparselu.cpp
+++ b/test/sparselu.cpp
@@ -42,8 +42,8 @@ template<typename T> void test_sparselu_T()
SparseLU<SparseMatrix<T, ColMajor, long int>, NaturalOrdering<long int> > sparselu_natural;
check_sparse_square_solving(sparselu_colamd);
- check_sparse_square_solving(sparselu_amd);
- check_sparse_square_solving(sparselu_natural);
+ check_sparse_square_solving(sparselu_amd, 300, 2000);
+ check_sparse_square_solving(sparselu_natural, 300, 2000);
check_sparse_square_abs_determinant(sparselu_colamd);
check_sparse_square_abs_determinant(sparselu_amd);