Fix compilation of Cholmod*(matrix) ctor

This commit is contained in:
Gael Guennebaud 2015-02-17 15:24:52 +01:00
parent 3373c903b3
commit 9daf8eba6f

View File

@ -367,7 +367,7 @@ class CholmodSimplicialLLT : public CholmodBase<_MatrixType, _UpLo, CholmodSimpl
CholmodSimplicialLLT(const MatrixType& matrix) : Base()
{
init();
compute(matrix);
this->compute(matrix);
}
~CholmodSimplicialLLT() {}
@ -414,7 +414,7 @@ class CholmodSimplicialLDLT : public CholmodBase<_MatrixType, _UpLo, CholmodSimp
CholmodSimplicialLDLT(const MatrixType& matrix) : Base()
{
init();
compute(matrix);
this->compute(matrix);
}
~CholmodSimplicialLDLT() {}
@ -459,7 +459,7 @@ class CholmodSupernodalLLT : public CholmodBase<_MatrixType, _UpLo, CholmodSuper
CholmodSupernodalLLT(const MatrixType& matrix) : Base()
{
init();
compute(matrix);
this->compute(matrix);
}
~CholmodSupernodalLLT() {}
@ -506,7 +506,7 @@ class CholmodDecomposition : public CholmodBase<_MatrixType, _UpLo, CholmodDecom
CholmodDecomposition(const MatrixType& matrix) : Base()
{
init();
compute(matrix);
this->compute(matrix);
}
~CholmodDecomposition() {}