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

@@ -225,7 +225,7 @@ class SparseLU<MatrixType,SuperLU> : public SparseLU<MatrixType>
}
SparseLU(const MatrixType& matrix, int flags = NaturalOrdering)
: Base(matrix, flags)
: Base(flags)
{
compute(matrix);
}
@@ -312,7 +312,7 @@ void SparseLU<MatrixType,SuperLU>::compute(const MatrixType& a)
StatFree(&m_sluStat);
// FIXME how to check for errors ???
m_succeeded = true;
Base::m_succeeded = true;
}
// template<typename MatrixType>