This is the implementation of the restoration convergence check is the original algorithm used the filter globalization mechanism. More...
#include <IpRestoPenaltyConvCheck.hpp>
Static Public Member Functions | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Static Public Member Functions inherited from Ipopt::RestoConvergenceCheck | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Static Public Member Functions inherited from Ipopt::OptimalityErrorConvergenceCheck | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Private Member Functions | |
virtual ConvergenceStatus | TestOrigProgress (Number orig_trial_barr, Number orig_trial_theta) |
Method for checking progress with original filter globalization mechanism. | |
Default Compiler Generated Methods | |
(Hidden to avoid implicit creation/calling). These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called. | |
RestoPenaltyConvergenceCheck (const RestoPenaltyConvergenceCheck &) | |
Copy Constructor. | |
void | operator= (const RestoPenaltyConvergenceCheck &) |
Default Assignment Operator. | |
Private Attributes | |
const PenaltyLSAcceptor * | orig_penalty_ls_acceptor_ |
Strategy object for the filter line search method for the original NLP. | |
Additional Inherited Members | |
Public Types inherited from Ipopt::ConvergenceCheck | |
enum | ConvergenceStatus { CONTINUE , CONVERGED , CONVERGED_TO_ACCEPTABLE_POINT , MAXITER_EXCEEDED , CPUTIME_EXCEEDED , WALLTIME_EXCEEDED , DIVERGING , USER_STOP , FAILED } |
Convergence return enum. More... | |
Protected Member Functions inherited from Ipopt::AlgorithmStrategyObject | |
const Journalist & | Jnlst () const |
IpoptNLP & | IpNLP () const |
IpoptData & | IpData () const |
IpoptCalculatedQuantities & | IpCq () const |
bool | HaveIpData () const |
Protected Attributes inherited from Ipopt::OptimalityErrorConvergenceCheck | |
Index | max_iterations_ |
Maximal number of iterations. | |
Number | dual_inf_tol_ |
Tolerance on unscaled dual infeasibility. | |
Number | constr_viol_tol_ |
Tolerance on unscaled constraint violation. | |
Number | compl_inf_tol_ |
Tolerance on unscaled complementarity. | |
Index | acceptable_iter_ |
Number of iterations with acceptable level of accuracy, after which the algorithm terminates. | |
Number | acceptable_tol_ |
Acceptable tolerance for the problem to terminate earlier if algorithm seems stuck or cycling. | |
Number | acceptable_dual_inf_tol_ |
Acceptable tolerance on unscaled dual infeasibility. | |
Number | acceptable_constr_viol_tol_ |
Acceptable tolerance on unscaled constraint violation. | |
Number | acceptable_compl_inf_tol_ |
Acceptable tolerance on unscaled complementarity. | |
Number | acceptable_obj_change_tol_ |
Acceptable tolerance for relative objective function change from iteration to iteration. | |
Number | diverging_iterates_tol_ |
Threshold for primal iterates for divergence test. | |
Number | mu_target_ |
Desired value of the barrier parameter. | |
Number | max_wall_time_ |
Upper bound on wallclock time. | |
Number | max_cpu_time_ |
Upper bound on CPU time. | |
This is the implementation of the restoration convergence check is the original algorithm used the filter globalization mechanism.
Definition at line 21 of file IpRestoPenaltyConvCheck.hpp.
Ipopt::RestoPenaltyConvergenceCheck::RestoPenaltyConvergenceCheck | ( | ) |
Default Constructor.
|
virtual |
Destructor.
|
private |
Copy Constructor.
|
virtual |
Set the object for the original penalty line search.
Here, orig_penalty_ls_acceptor must be the same strategy object to which the restoration phase object with this object is given. This method must be called to finish the definition of the algorithm, before Initialize is called.
Implements Ipopt::RestoConvergenceCheck.
|
virtual |
overloaded from AlgorithmStrategyObject
Reimplemented from Ipopt::RestoConvergenceCheck.
|
static |
|
private |
Default Assignment Operator.
|
privatevirtual |
Method for checking progress with original filter globalization mechanism.
Implements Ipopt::RestoConvergenceCheck.
|
private |
Strategy object for the filter line search method for the original NLP.
Definition at line 90 of file IpRestoPenaltyConvCheck.hpp.