27#ifndef EWOMS_LINEAR_SOLVER_REPORT_HH
28#define EWOMS_LINEAR_SOLVER_REPORT_HH
52 const Timer& timer()
const
58 unsigned iterations()
const
59 {
return iterations_; }
64 SolverReport& operator++()
65 { ++iterations_;
return *
this; }
67 bool converged()
const
68 {
return converged_; }
70 void setConverged(
bool value)
71 { converged_ = value; }
Provides an encapsulation to measure the system time.
Definition timer.hpp:46
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilbioeffectsmodules.hh:43
Provides an encapsulation to measure the system time.
A simple class which makes sure that a timer gets stopped if an exception is thrown.