From bbaef8ebbaca890267062bbd605c218f2d765d29 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 17 Jul 2013 09:30:25 +0200 Subject: SparseLU: make COLAMDOrdering the default ordering method. --- 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 6a9eac065..37980defc 100644 --- a/test/sparselu.cpp +++ b/test/sparselu.cpp @@ -26,7 +26,7 @@ // SparseLU solve does not accept column major matrices for the destination. // However, as expected, the generic check_sparse_square_solving routines produces row-major // rhs and destination matrices when compiled with EIGEN_DEFAULT_TO_ROW_MAJOR -// + #ifdef EIGEN_DEFAULT_TO_ROW_MAJOR #undef EIGEN_DEFAULT_TO_ROW_MAJOR #endif @@ -37,7 +37,7 @@ template void test_sparselu_T() { - SparseLU, COLAMDOrdering > sparselu_colamd; + SparseLU /*, COLAMDOrdering*/ > sparselu_colamd; // COLAMDOrdering is the default SparseLU, AMDOrdering > sparselu_amd; SparseLU, NaturalOrdering > sparselu_natural; -- cgit v1.2.3