From 0c5a09d93f3efe85b7666b0f45a43abb48def18c Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 25 Oct 2008 00:08:52 +0000 Subject: some cleaning and doc in ParametrizedLine and HyperPlane Just a thought: what about ParamLine instead of the verbose ParametrizedLine ? --- bench/sparse_lu.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bench/sparse_lu.cpp') diff --git a/bench/sparse_lu.cpp b/bench/sparse_lu.cpp index d6020b552..bb73d481d 100644 --- a/bench/sparse_lu.cpp +++ b/bench/sparse_lu.cpp @@ -112,6 +112,11 @@ int main(int argc, char *argv[]) } #endif + #ifdef EIGEN_UMFPACK_SUPPORT + x.setZero(); + doEigen("Eigen/UmfPack (auto)", sm1, b, x, 0); + #endif + #ifdef EIGEN_SUPERLU_SUPPORT x.setZero(); doEigen("Eigen/SuperLU (nat)", sm1, b, x, Eigen::NaturalOrdering); @@ -120,11 +125,6 @@ int main(int argc, char *argv[]) doEigen("Eigen/SuperLU (COLAMD)", sm1, b, x, Eigen::ColApproxMinimumDegree); #endif - #ifdef EIGEN_UMFPACK_SUPPORT - x.setZero(); - doEigen("Eigen/UmfPack (auto)", sm1, b, x, 0); - #endif - } return 0; -- cgit v1.2.3