taucs: make SupernodalMultifrontal the default mode

This commit is contained in:
Gael Guennebaud 2010-04-15 12:42:17 +02:00
parent 0b6b316f18
commit ea1a2df370

View File

@ -89,12 +89,12 @@ class SparseLLT<MatrixType,Taucs> : public SparseLLT<MatrixType>
public: public:
SparseLLT(int flags = 0) SparseLLT(int flags = SupernodalMultifrontal)
: Base(flags), m_taucsSupernodalFactor(0) : Base(flags), m_taucsSupernodalFactor(0)
{ {
} }
SparseLLT(const MatrixType& matrix, int flags = 0) SparseLLT(const MatrixType& matrix, int flags = SupernodalMultifrontal)
: Base(flags), m_taucsSupernodalFactor(0) : Base(flags), m_taucsSupernodalFactor(0)
{ {
compute(matrix); compute(matrix);