mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
sparse module: some trivial bugfixes
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user