bug #897: Update unsupported iterative solvers based on IterativeSolverBased.

This commit is contained in:
Gael Guennebaud
2015-02-10 13:02:59 +01:00
parent 87629cd639
commit d10d6a40dd
3 changed files with 3 additions and 3 deletions

View File

@@ -150,7 +150,7 @@ class DGMRES : public IterativeSolverBase<DGMRES<_MatrixType,_Preconditioner> >
m_error = Base::m_tolerance;
typename Dest::ColXpr xj(x,j);
dgmres(*mp_matrix, b.col(j), xj, Base::m_preconditioner);
dgmres(mp_matrix, b.col(j), xj, Base::m_preconditioner);
}
m_info = failed ? NumericalIssue
: m_error <= Base::m_tolerance ? Success