16 #include <deal.II/base/logstream.h> 17 #include <deal.II/base/parameter_handler.h> 18 #include <deal.II/base/signaling_nan.h> 19 #include <deal.II/lac/solver_control.h> 24 DEAL_II_NAMESPACE_OPEN
30 const double tolerance,
31 const bool m_log_history,
32 const bool m_log_result)
37 initial_val(
numbers::signaling_nan<double>()),
38 lvalue(
numbers::signaling_nan<double>()),
41 relative_failure_residual(0),
43 m_log_history(m_log_history),
45 m_log_result(m_log_result),
46 history_data_enabled(false)
58 const double check_value)
71 deallog <<
"Check " << step <<
"\t" << check_value << std::endl;
82 deallog <<
"Starting value " << check_value << std::endl;
88 if (check_value <=
tol)
91 deallog <<
"Convergence step " << step
92 <<
" value " << check_value << std::endl;
103 deallog <<
"Failure step " << step
104 <<
" value " << check_value << std::endl;
222 const bool m_log_history,
223 const bool m_log_result)
227 reduced_tol(
numbers::signaling_nan<double>())
234 reduce(
numbers::signaling_nan<double>()),
235 reduced_tol(
numbers::signaling_nan<double>())
256 const double check_value)
274 deallog <<
"Convergence step " << step
275 <<
" value " << check_value << std::endl;
308 const double tolerance,
309 const bool m_log_history,
310 const bool m_log_result)
321 const double check_value)
328 deallog <<
"Convergence step " << step
329 <<
" value " << check_value << std::endl;
340 DEAL_II_NAMESPACE_CLOSE
double initial_value() const
Stop iteration, goal not reached.
long int get_integer(const std::string &entry_string) const
virtual State check(const unsigned int step, const double check_value)
bool history_data_enabled
Subscriptor & operator=(const Subscriptor &)
static void declare_parameters(ParameterHandler ¶m)
double step_reduction(unsigned int step) const
double final_reduction() const
void parse_parameters(ParameterHandler ¶m)
virtual ~IterationNumberControl()
static ::ExceptionBase & ExcIndexRange(int arg1, int arg2, int arg3)
double get_double(const std::string &entry_name) const
static void declare_parameters(ParameterHandler ¶m)
unsigned int log_frequency(unsigned int)
Stop iteration, goal reached.
#define Assert(cond, exc)
unsigned int m_log_frequency
double set_reduction(const double)
static ::ExceptionBase & ExcHistoryDataRequired()
virtual ~ReductionControl()
bool is_nan(const double x)
bool get_bool(const std::string &entry_name) const
double relative_failure_residual
double last_value() const
double average_reduction() const
unsigned int last_step() const
IterationNumberControl(const unsigned int maxiter=100, const double tolerance=1e-12, const bool log_history=false, const bool log_result=true)
void declare_entry(const std::string &entry, const std::string &default_value, const Patterns::PatternBase &pattern=Patterns::Anything(), const std::string &documentation=std::string())
void enable_history_data()
double set_tolerance(const double)
ReductionControl(const unsigned int maxiter=100, const double tolerance=1.e-10, const double reduce=1.e-2, const bool log_history=false, const bool log_result=true)
virtual State check(const unsigned int step, const double check_value)
void parse_parameters(ParameterHandler ¶m)
std::vector< double > history_data
SolverControl(const unsigned int n=100, const double tol=1.e-10, const bool log_history=false, const bool log_result=true)
unsigned int set_max_steps(const unsigned int)
virtual State check(const unsigned int step, const double check_value)
ReductionControl & operator=(const SolverControl &c)
static ::ExceptionBase & ExcInternalError()