From 769cb99845aeb7de6753dbd3d0e3efe0ab774c34 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 3 Sep 2015 13:56:02 +0200 Subject: [PATCH] Fix sparselu unit test. --- test/sparselu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/sparselu.cpp b/test/sparselu.cpp index 78615ff3b..b3d67aea8 100644 --- a/test/sparselu.cpp +++ b/test/sparselu.cpp @@ -41,9 +41,9 @@ template void test_sparselu_T() SparseLU, AMDOrdering > sparselu_amd; SparseLU, NaturalOrdering > sparselu_natural; - check_sparse_square_solving(sparselu_colamd, 300, 100000, true); - check_sparse_square_solving(sparselu_amd, 300, 10000, true); - check_sparse_square_solving(sparselu_natural, 300, 2000, true); + check_sparse_square_solving(sparselu_colamd, true); + check_sparse_square_solving(sparselu_amd, true); + check_sparse_square_solving(sparselu_natural,true); check_sparse_square_abs_determinant(sparselu_colamd); check_sparse_square_abs_determinant(sparselu_amd);