#include <IpInexactNormalStepCalc.hpp>
Inheritance diagram for Ipopt::InexactNormalStepCalculator:
Public Member Functions | |
virtual bool | InitializeImpl (const OptionsList &options, const std::string &prefix)=0 |
overloaded from AlgorithmStrategyObject | |
virtual bool | ComputeNormalStep (SmartPtr< Vector > &normal_x, SmartPtr< Vector > &normal_s)=0 |
Method for computing the normal step. | |
Constructors/Destructors | |
InexactNormalStepCalculator () | |
Default onstructor. | |
virtual | ~InexactNormalStepCalculator () |
Default destructor. | |
Protected Member Functions | |
InexactData & | InexData () |
Method to easily access Inexact data. | |
InexactCq & | InexCq () |
Method to easily access Inexact calculated quantities. | |
Private Member Functions | |
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. | |
InexactNormalStepCalculator (const InexactNormalStepCalculator &) | |
Copy Constructor. | |
void | operator= (const InexactNormalStepCalculator &) |
Overloaded Equals Operator. |
Definition at line 20 of file IpInexactNormalStepCalc.hpp.
Ipopt::InexactNormalStepCalculator::InexactNormalStepCalculator | ( | ) | [inline] |
virtual Ipopt::InexactNormalStepCalculator::~InexactNormalStepCalculator | ( | ) | [inline, virtual] |
Ipopt::InexactNormalStepCalculator::InexactNormalStepCalculator | ( | const InexactNormalStepCalculator & | ) | [private] |
Copy Constructor.
virtual bool Ipopt::InexactNormalStepCalculator::InitializeImpl | ( | const OptionsList & | options, | |
const std::string & | prefix | |||
) | [pure virtual] |
overloaded from AlgorithmStrategyObject
Implements Ipopt::AlgorithmStrategyObject.
Implemented in Ipopt::InexactDoglegNormalStep.
virtual bool Ipopt::InexactNormalStepCalculator::ComputeNormalStep | ( | SmartPtr< Vector > & | normal_x, | |
SmartPtr< Vector > & | normal_s | |||
) | [pure virtual] |
Method for computing the normal step.
The computed step is returned as normal_x and normal_s, for the x and s variables, respectively. These quantities are not slack-scaled. If the step cannot be computed, this method returns false.
Implemented in Ipopt::InexactDoglegNormalStep.
InexactData& Ipopt::InexactNormalStepCalculator::InexData | ( | ) | [inline, protected] |
Method to easily access Inexact data.
Definition at line 47 of file IpInexactNormalStepCalc.hpp.
References Ipopt::IpoptData::AdditionalData(), DBG_ASSERT, and Ipopt::AlgorithmStrategyObject::IpData().
InexactCq& Ipopt::InexactNormalStepCalculator::InexCq | ( | ) | [inline, protected] |
Method to easily access Inexact calculated quantities.
Definition at line 56 of file IpInexactNormalStepCalc.hpp.
References Ipopt::IpoptCalculatedQuantities::AdditionalCq(), DBG_ASSERT, and Ipopt::AlgorithmStrategyObject::IpCq().
void Ipopt::InexactNormalStepCalculator::operator= | ( | const InexactNormalStepCalculator & | ) | [private] |
Overloaded Equals Operator.