sparse module: some trivial bugfixes

This commit is contained in:
Gael Guennebaud
2008-10-19 17:07:20 +00:00
parent 76fe2e1b34
commit 64f7fbe3f2
4 changed files with 5 additions and 5 deletions

View File

@@ -120,7 +120,7 @@ class SparseLLT<MatrixType,Cholmod> : public SparseLLT<MatrixType>
}
SparseLLT(const MatrixType& matrix, int flags = 0)
: Base(matrix, flags), m_cholmodFactor(0)
: Base(flags), m_cholmodFactor(0)
{
cholmod_start(&m_cholmod);
compute(matrix);