44#ifndef ROL_CONSTRAINTSTATUSTEST_H
45#define ROL_CONSTRAINTSTATUSTEST_H
72 gtol_ = parlist.sublist(
"Status Test").get(
"Gradient Tolerance", em6);
73 ctol_ = parlist.sublist(
"Status Test").get(
"Constraint Tolerance", em6);
74 stol_ = parlist.sublist(
"Status Test").get(
"Step Tolerance", em6*
gtol_);
75 max_iter_ = parlist.sublist(
"Status Test").get(
"Iteration Limit", 100);
Provides an interface to check status of optimization algorithms for problems with equality constrain...
ConstraintStatusTest(ROL::ParameterList &parlist)
virtual ~ConstraintStatusTest()
ConstraintStatusTest(Real gtol=1e-6, Real ctol=1e-6, Real stol=1e-12, int max_iter=100)
virtual bool check(AlgorithmState< Real > &state)
Check algorithm status.
Provides an interface to check status of optimization algorithms.
State for algorithm class. Will be used for restarts.