Implementation of the search direction calculator that computes the search direction using iterative linear solvers. More...
#include <IpInexactSearchDirCalc.hpp>
Static Public Member Functions | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Private Types | |
enum | DecompositionTypeEnum { ALWAYS = 0 , ADAPTIVE , SWITCH_ONCE } |
enumeration for decomposition options More... | |
Private Member Functions | |
InexactData & | InexData () |
Method to easily access Inexact data. | |
InexactCq & | InexCq () |
Method to easily access Inexact calculated quantities. | |
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. | |
InexactSearchDirCalculator () | |
Default Constructor. | |
InexactSearchDirCalculator (const InexactSearchDirCalculator &) | |
Copy Constructor. | |
void | operator= (const InexactSearchDirCalculator &) |
Overloaded Assignment Operator. | |
Private Attributes | |
DecompositionTypeEnum | decomposition_type_ |
Type of decomposition. | |
Algorithmic options | |
Number | local_inf_Ac_tol_ |
termination tolerance for local infeasibility | |
Strategy objects | |
SmartPtr< InexactNormalStepCalculator > | normal_step_calculator_ |
SmartPtr< InexactPDSolver > | inexact_pd_solver_ |
Additional Inherited Members | |
Protected Member Functions inherited from Ipopt::AlgorithmStrategyObject | |
const Journalist & | Jnlst () const |
IpoptNLP & | IpNLP () const |
IpoptData & | IpData () const |
IpoptCalculatedQuantities & | IpCq () const |
bool | HaveIpData () const |
Implementation of the search direction calculator that computes the search direction using iterative linear solvers.
Those steps do not necessarily satisfy the linearized KKT conditions with high accuracy.
Definition at line 23 of file IpInexactSearchDirCalc.hpp.
enumeration for decomposition options
Enumerator | |
---|---|
ALWAYS | |
ADAPTIVE | |
SWITCH_ONCE |
Definition at line 110 of file IpInexactSearchDirCalc.hpp.
Ipopt::InexactSearchDirCalculator::InexactSearchDirCalculator | ( | SmartPtr< InexactNormalStepCalculator > | normal_step_calculator, |
SmartPtr< InexactPDSolver > | inexact_pd_solver | ||
) |
Constructor.
|
virtual |
Destructor.
|
private |
Default Constructor.
|
private |
Copy Constructor.
|
virtual |
Implementation of the initialization method that has to be overloaded by for each derived class.
Implements Ipopt::SearchDirectionCalculator.
Method for computing the search direction.
In this version, we compute a normal and a tangential component, which are stored in the InexactData object. The overall step is still stored in the IpoptData object.
Implements Ipopt::SearchDirectionCalculator.
|
static |
|
private |
Overloaded Assignment Operator.
|
inlineprivate |
Method to easily access Inexact data.
Definition at line 82 of file IpInexactSearchDirCalc.hpp.
|
inlineprivate |
Method to easily access Inexact calculated quantities.
Definition at line 90 of file IpInexactSearchDirCalc.hpp.
|
private |
termination tolerance for local infeasibility
Definition at line 100 of file IpInexactSearchDirCalc.hpp.
|
private |
Definition at line 105 of file IpInexactSearchDirCalc.hpp.
|
private |
Definition at line 106 of file IpInexactSearchDirCalc.hpp.
|
private |
Type of decomposition.
Definition at line 118 of file IpInexactSearchDirCalc.hpp.