From c881ae09768f7615d939e58851e8fd92cb0eae95 Mon Sep 17 00:00:00 2001 From: guido Date: Thu, 10 Sep 1998 16:10:08 +0000 Subject: [PATCH] Log-Output in SolverControl git-svn-id: https://svn.dealii.org/trunk@603 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/solver_control.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/source/solver_control.cc b/deal.II/lac/source/solver_control.cc index 26e9dba996..603313e4f0 100644 --- a/deal.II/lac/source/solver_control.cc +++ b/deal.II/lac/source/solver_control.cc @@ -1,6 +1,6 @@ // $Id$ - +#include #include @@ -20,7 +20,10 @@ SolverControl::SolverControl (const unsigned int maxiter, SolverControl::State SolverControl::check (const unsigned int step, - const double check_value) { + const double check_value) +{ + deallog << "Check " << step << "\t" << check_value << endl; + lstep = step; lvalue = check_value; if (step>=maxsteps) return failure; -- 2.39.5