From 9aef0db9928e54d1b0a317b07c2cc3a9b42fe5b2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 9 Jun 2015 09:29:53 +0200 Subject: Skip too large real-world problems for solvers that do not scale (e.g., SimplicialLLT without reordering) --- test/sparselu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/sparselu.cpp') 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 void test_sparselu_T() SparseLU, NaturalOrdering > 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); -- cgit v1.2.3