From a44d022cafce5b1f8e452a22d43bd23265438ca6 Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Sun, 26 Jul 2015 20:30:30 +0200 Subject: bug #792: SparseLU::factorize failed for structurally rank deficient matrices --- 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 231c857ad..c725847d8 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, 300, 2000); - check_sparse_square_solving(sparselu_natural, 300, 2000); + check_sparse_square_solving(sparselu_amd, 300, 2000, !true); // FIXME AMD ordering fails for structurally deficient matrices! + check_sparse_square_solving(sparselu_natural, 300, 2000, true); check_sparse_square_abs_determinant(sparselu_colamd); check_sparse_square_abs_determinant(sparselu_amd); -- cgit v1.2.3