From: Matthias Maier Date: Sun, 20 Oct 2013 21:34:20 +0000 (+0000) Subject: Bugfix: Correct a C&P error in solver_relaxation.h X-Git-Tag: v8.1.0~564 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=100d3c3e6b6a1b90a9aca10ff5085633c1a43929;p=dealii.git Bugfix: Correct a C&P error in solver_relaxation.h git-svn-id: https://svn.dealii.org/trunk@31356 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/solver_relaxation.h b/deal.II/include/deal.II/lac/solver_relaxation.h index 62598b9dbe..547c67bc4d 100644 --- a/deal.II/include/deal.II/lac/solver_relaxation.h +++ b/deal.II/include/deal.II/lac/solver_relaxation.h @@ -152,8 +152,8 @@ SolverRelaxation::solve ( // in case of failure: throw exception if (this->control().last_check() != SolverControl::success) - AssertThrow(false, SolverControl::NoConvergence (control.last_step(), - control.last_value())); + AssertThrow(false, SolverControl::NoConvergence (this->control().last_step(), + this->control().last_value())); // otherwise exit as normal }