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

(transplanted from 75435079ca
)
This commit is contained in:
Gael Guennebaud
2012-08-27 11:11:25 +02:00
parent e589e3f0b6
commit 2858b6d2d6
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()