aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-04-15 12:42:17 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-04-15 12:42:17 +0200
commitea1a2df37092f88f5594dfea1f7e4996dd8e612d (patch)
tree59fb77602e2c4a952bdec394e2d7f0d04993864e /Eigen/src
parent0b6b316f1887ec640279f13798e061f835e5a761 (diff)
taucs: make SupernodalMultifrontal the default mode
Diffstat (limited to 'Eigen/src')
-rw-r--r--Eigen/src/Sparse/TaucsSupport.h4
1 files 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<MatrixType,Taucs> : public SparseLLT<MatrixType>
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);