This is the interface for the classes that perform the actual step. More...
#include <SensStepCalc.hpp>
Public Member Functions | |
SensitivityStepCalculator () | |
virtual | ~SensitivityStepCalculator () |
virtual bool | InitializeImpl (const OptionsList &options, const std::string &prefix) |
Implementation of the initialization method that has to be overloaded by for each derived class. | |
bool | Do_Boundcheck () const |
void | SetSchurDriver (SmartPtr< SchurDriver > driver) |
SmartPtr< SchurDriver > | Driver () |
virtual bool | Step (DenseVector &delta_u, IteratesVector &sol)=0 |
This is the main algorithmic function of this class. | |
virtual SmartPtr< IteratesVector > | GetSensitivityVector ()=0 |
return the sensitivity vector | |
![]() | |
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. | |
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. | |
AlgorithmStrategyObject () | |
Default Constructor. | |
virtual | ~AlgorithmStrategyObject () |
Destructor. | |
![]() | |
ReferencedObject () | |
virtual | ~ReferencedObject () |
Index | ReferenceCount () const |
void | AddRef (const Referencer *referencer) const |
void | ReleaseRef (const Referencer *referencer) const |
Private Attributes | |
SmartPtr< SchurDriver > | driver_ |
bool | do_boundcheck_ |
Additional Inherited Members | |
![]() | |
const Journalist & | Jnlst () const |
IpoptNLP & | IpNLP () const |
IpoptData & | IpData () const |
IpoptCalculatedQuantities & | IpCq () const |
bool | HaveIpData () const |
This is the interface for the classes that perform the actual step.
Definition at line 20 of file SensStepCalc.hpp.
|
inline |
Definition at line 23 of file SensStepCalc.hpp.
|
inlinevirtual |
Definition at line 28 of file SensStepCalc.hpp.
|
inlinevirtual |
Implementation of the initialization method that has to be overloaded by for each derived class.
Implements Ipopt::AlgorithmStrategyObject.
Reimplemented in Ipopt::StdStepCalculator.
Definition at line 31 of file SensStepCalc.hpp.
|
inline |
Definition at line 40 of file SensStepCalc.hpp.
|
inline |
Definition at line 45 of file SensStepCalc.hpp.
|
inline |
Definition at line 59 of file SensStepCalc.hpp.
|
pure virtual |
This is the main algorithmic function of this class.
It calculates a step using its SchurDriver, checks bounds, and returns it
Implemented in Ipopt::StdStepCalculator.
|
pure virtual |
return the sensitivity vector
Implemented in Ipopt::StdStepCalculator.
|
private |
Definition at line 79 of file SensStepCalc.hpp.
|
private |
Definition at line 80 of file SensStepCalc.hpp.