From ea1a2df37092f88f5594dfea1f7e4996dd8e612d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 15 Apr 2010 12:42:17 +0200 Subject: [PATCH] taucs: make SupernodalMultifrontal the default mode --- Eigen/src/Sparse/TaucsSupport.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eigen/src/Sparse/TaucsSupport.h b/Eigen/src/Sparse/TaucsSupport.h index 19e54cdc6..0caa8cbed 100644 --- a/Eigen/src/Sparse/TaucsSupport.h +++ b/Eigen/src/Sparse/TaucsSupport.h @@ -89,12 +89,12 @@ class SparseLLT : public SparseLLT public: - SparseLLT(int flags = 0) + SparseLLT(int flags = SupernodalMultifrontal) : Base(flags), m_taucsSupernodalFactor(0) { } - SparseLLT(const MatrixType& matrix, int flags = 0) + SparseLLT(const MatrixType& matrix, int flags = SupernodalMultifrontal) : Base(flags), m_taucsSupernodalFactor(0) { compute(matrix);