Ipopt
3.12.12
|
Monotone Mu Update. More...
#include <IpMonotoneMuUpdate.hpp>
Public Member Functions | |
virtual bool | InitializeImpl (const OptionsList &options, const std::string &prefix) |
Initialize method - overloaded from AlgorithmStrategyObject. More... | |
virtual bool | UpdateBarrierParameter () |
Method for determining the barrier parameter for the next iteration. More... | |
Constructors/Destructors | |
MonotoneMuUpdate (const SmartPtr< LineSearch > &linesearch) | |
Default Constructor. More... | |
virtual | ~MonotoneMuUpdate () |
Default destructor. More... | |
![]() | |
MuUpdate () | |
Default Constructor. More... | |
virtual | ~MuUpdate () |
Default destructor. More... | |
![]() | |
bool | Initialize (const Journalist &jnlst, IpoptNLP &ip_nlp, IpoptData &ip_data, IpoptCalculatedQuantities &ip_cq, const OptionsList &options, const std::string &prefix) |
This method is called every time the algorithm starts again - it is used to reset any internal state. More... | |
bool | ReducedInitialize (const Journalist &jnlst, const OptionsList &options, const std::string &prefix) |
Reduced version of the Initialize method, which does not require special Ipopt information. More... | |
AlgorithmStrategyObject () | |
Default Constructor. More... | |
virtual | ~AlgorithmStrategyObject () |
Default Destructor. More... | |
![]() | |
ReferencedObject () | |
virtual | ~ReferencedObject () |
Index | ReferenceCount () const |
void | AddRef (const Referencer *referencer) const |
void | ReleaseRef (const Referencer *referencer) const |
Static Public Member Functions | |
static void | RegisterOptions (const SmartPtr< RegisteredOptions > &roptions) |
Methods for IpoptType. More... | |
Private Member Functions | |
void | CalcNewMuAndTau (Number &new_mu, Number &new_tau) |
Internal method for computing the new values for mu and tau. More... | |
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. | |
MonotoneMuUpdate () | |
MonotoneMuUpdate (const MonotoneMuUpdate &) | |
Copy Constructor. More... | |
void | operator= (const MonotoneMuUpdate &) |
Overloaded Equals Operator. More... | |
Private Attributes | |
SmartPtr< LineSearch > | linesearch_ |
bool | initialized_ |
Flag indicating whether the method has been called at least once so far. More... | |
bool | first_iter_resto_ |
If true, no modification of the barrier parameter will be done at the first call of Update (fix for the restoration phase - we should clean that up!) More... | |
Algorithmic parameters | |
Number | mu_init_ |
Initial value of the barrier parameter. More... | |
Number | barrier_tol_factor_ |
Number | mu_linear_decrease_factor_ |
Number | mu_superlinear_decrease_power_ |
bool | mu_allow_fast_monotone_decrease_ |
Number | tau_min_ |
Tau_min for fraction to boundary rule. More... | |
Number | compl_inf_tol_ |
Number | mu_target_ |
Additional Inherited Members | |
![]() | |
const Journalist & | Jnlst () const |
IpoptNLP & | IpNLP () const |
IpoptData & | IpData () const |
IpoptCalculatedQuantities & | IpCq () const |
bool | HaveIpData () const |
Monotone Mu Update.
This class implements the standard monotone mu update approach.
Definition at line 22 of file IpMonotoneMuUpdate.hpp.
Ipopt::MonotoneMuUpdate::MonotoneMuUpdate | ( | const SmartPtr< LineSearch > & | linesearch | ) |
Default Constructor.
|
virtual |
Default destructor.
|
private |
|
private |
Copy Constructor.
|
virtual |
Initialize method - overloaded from AlgorithmStrategyObject.
Implements Ipopt::MuUpdate.
|
virtual |
Method for determining the barrier parameter for the next iteration.
When the optimality error for the current barrier parameter is less than a tolerance, the barrier parameter is reduced, and the Reset method of the LineSearch object linesearch is called.
Implements Ipopt::MuUpdate.
|
static |
Methods for IpoptType.
|
private |
Overloaded Equals Operator.
Internal method for computing the new values for mu and tau.
|
private |
Initial value of the barrier parameter.
Definition at line 75 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 76 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 77 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 78 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 79 of file IpMonotoneMuUpdate.hpp.
|
private |
Tau_min for fraction to boundary rule.
Definition at line 81 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 82 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 83 of file IpMonotoneMuUpdate.hpp.
|
private |
Definition at line 86 of file IpMonotoneMuUpdate.hpp.
|
private |
Flag indicating whether the method has been called at least once so far.
Definition at line 90 of file IpMonotoneMuUpdate.hpp.
|
private |
If true, no modification of the barrier parameter will be done at the first call of Update (fix for the restoration phase - we should clean that up!)
Definition at line 95 of file IpMonotoneMuUpdate.hpp.