From 4da9d97af451131eb203c3e2221968f10fa258df Mon Sep 17 00:00:00 2001 From: maier Date: Sun, 20 Oct 2013 21:34:20 +0000 Subject: [PATCH] Bugfix: Correct a C&P error in solver_relaxation.h git-svn-id: https://svn.dealii.org/trunk@31356 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/solver_relaxation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.39.5