aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparselu.cpp
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-07-26 20:30:30 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-07-26 20:30:30 +0200
commita44d022cafce5b1f8e452a22d43bd23265438ca6 (patch)
tree7ebe6a90bdf3e4aa70554e8c8beccc3443e1fbb7 /test/sparselu.cpp
parent4b3052c54d14f486c2665530f06cdeff636169e4 (diff)
bug #792: SparseLU::factorize failed for structurally rank deficient matrices
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 231c857ad..c725847d8 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, 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);