15#ifndef dealii_solver_control_h
16#define dealii_solver_control_h
108 <<
"Iterative method reported convergence failure in step " <<
last_step
109 <<
". The residual in the last step was " <<
last_residual <<
".\n\n"
110 <<
"This error message can indicate that you have simply not allowed "
111 <<
"a sufficiently large number of iterations for your iterative solver "
112 <<
"to converge. This often happens when you increase the size of your "
113 <<
"problem. In such cases, the last residual will likely still be very "
114 <<
"small, and you can make the error go away by increasing the allowed "
115 <<
"number of iterations when setting up the SolverControl object that "
116 <<
"determines the maximal number of iterations you allow."
118 <<
"The other situation where this error may occur is when your matrix "
119 <<
"is not invertible (e.g., your matrix has a null-space), or if you "
120 <<
"try to apply the wrong solver to a matrix (e.g., using CG for a "
121 <<
"matrix that is not symmetric or not positive definite). In these "
122 <<
"cases, the residual in the last iteration is likely going to be large."
151 const double tol = 1.e-10,
191 check(
const unsigned int step,
const double check_value);
266 const std::vector<double> &
433 const double reduce = 1.e-2,
474 check(
const unsigned int step,
const double check_value)
override;
549 check(
const unsigned int step,
const double check_value)
override;
604 check(
const unsigned int step,
const double check_value)
override;
ConsecutiveControl & operator=(const SolverControl &c)
virtual ~ConsecutiveControl() override=default
ConsecutiveControl(const unsigned int maxiter=100, const double tolerance=1.e-10, const unsigned int n_consecutive_iterations=2, const bool log_history=false, const bool log_result=false)
unsigned int n_consecutive_iterations
unsigned int n_converged_iterations
virtual State check(const unsigned int step, const double check_value) override
IterationNumberControl & operator=(const SolverControl &c)
virtual State check(const unsigned int step, const double check_value) override
IterationNumberControl(const unsigned int maxiter=100, const double tolerance=1e-12, const bool log_history=false, const bool log_result=true)
IterationNumberControl(const SolverControl &c)
virtual ~IterationNumberControl() override=default
double set_reduction(const double)
void parse_parameters(ParameterHandler ¶m)
virtual ~ReductionControl() override=default
virtual State check(const unsigned int step, const double check_value) override
static void declare_parameters(ParameterHandler ¶m)
ReductionControl & operator=(const SolverControl &c)
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)
const unsigned int last_step
NoConvergence(const unsigned int last_step, const double last_residual)
const double last_residual
virtual void print_info(std::ostream &out) const override
virtual ~NoConvergence() noexcept override=default
void log_history(const bool)
static void declare_parameters(ParameterHandler ¶m)
double average_reduction() const
virtual ~SolverControl() override=default
const std::vector< double > & get_history_data() const
void clear_failure_criterion()
unsigned int last_step() const
double last_value() const
void log_result(const bool)
unsigned int m_log_frequency
unsigned int log_frequency(unsigned int)
virtual State check(const unsigned int step, const double check_value)
void set_failure_criterion(const double rel_failure_residual)
void enable_history_data()
double step_reduction(unsigned int step) const
std::vector< double > history_data
double relative_failure_residual
unsigned int set_max_steps(const unsigned int)
double set_tolerance(const double)
unsigned int max_steps() const
SolverControl(const unsigned int n=100, const double tol=1.e-10, const bool log_history=false, const bool log_result=true)
double initial_value() const
void parse_parameters(ParameterHandler ¶m)
double final_reduction() const
@ iterate
Continue iteration.
@ success
Stop iteration, goal reached.
@ failure
Stop iteration, goal not reached.
bool history_data_enabled
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define DeclException0(Exception0)
static ::ExceptionBase & ExcHistoryDataRequired()