fix bug #499: the image was missing because of a dependency issue when building/executing the "special" examples

This commit is contained in:
Gael Guennebaud
2012-08-27 11:11:25 +02:00
parent aa1aa36d6d
commit 75435079ca
4 changed files with 6 additions and 7 deletions

View File

@@ -496,8 +496,8 @@ class SuperLU : public SuperLUBase<_MatrixType,SuperLU<_MatrixType> >
SuperLU(const MatrixType& matrix) : Base()
{
Base::init();
compute(matrix);
init();
Base::compute(matrix);
}
~SuperLU()
@@ -833,7 +833,7 @@ class SuperILU : public SuperLUBase<_MatrixType,SuperILU<_MatrixType> >
SuperILU(const MatrixType& matrix) : Base()
{
init();
compute(matrix);
Base::compute(matrix);
}
~SuperILU()