From: guido Date: Thu, 10 Sep 1998 16:10:08 +0000 (+0000) Subject: Log-Output in SolverControl X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c881ae09768f7615d939e58851e8fd92cb0eae95;p=dealii-svn.git Log-Output in SolverControl git-svn-id: https://svn.dealii.org/trunk@603 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;