Ipopt  3.11.9
IpInexactNewtonNormal.hpp
Go to the documentation of this file.
1 // Copyright (C) 2008, 2011 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpInexactNewtonNormal.hpp 1886 2011-01-27 23:11:16Z andreasw $
6 //
7 // Authors: Andreas Waechter IBM 2008-09-05
8 
9 #ifndef __IPINEXACTNEWTONNORMAL_HPP__
10 #define __IPINEXACTNEWTONNORMAL_HPP__
11 
12 #include "IpAlgStrategy.hpp"
13 #include "IpAugSystemSolver.hpp"
14 #include "IpInexactCq.hpp"
15 
16 namespace Ipopt
17 {
22  {
23  public:
28 
30  virtual ~InexactNewtonNormalStep();
32 
34  virtual bool InitializeImpl(const OptionsList& options,
35  const std::string& prefix);
36 
42  virtual bool ComputeNewtonNormalStep(Vector& newton_x, Vector& newton_s);
43 
46  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
48 
49  protected:
52  {
53  InexactData& inexact_data =
54  static_cast<InexactData&>(IpData().AdditionalData());
55  DBG_ASSERT(dynamic_cast<InexactData*>(&IpData().AdditionalData()));
56  return inexact_data;
57  }
58 
61  {
62  InexactCq& inexact_cq =
63  static_cast<InexactCq&>(IpCq().AdditionalCq());
64  DBG_ASSERT(dynamic_cast<InexactCq*>(&IpCq().AdditionalCq()));
65  return inexact_cq;
66  }
67 
68  private:
79 
82 
86 
89  };
90 
91 } // namespace Ipopt
92 
93 #endif
Ipopt::InexactNewtonNormalStep
Compute the "Newton" normal step from the (slack-scaled) augmented system.
Definition: IpInexactNewtonNormal.hpp:21
Ipopt::AlgorithmStrategyObject::IpCq
IpoptCalculatedQuantities & IpCq() const
Definition: IpAlgStrategy.hpp:137
Ipopt::InexactNewtonNormalStep::InexactNewtonNormalStep
InexactNewtonNormalStep()
Default onstructor.
Ipopt::InexactNewtonNormalStep::RegisterOptions
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
Methods for IpoptType.
IpInexactCq.hpp
Ipopt::InexactData
Class to organize all the additional data required by the Chen-Goldfarb penalty function algorithm.
Definition: IpInexactData.hpp:19
Ipopt
Definition: matlabjournal.hpp:14
Ipopt::AlgorithmStrategyObject::IpData
IpoptData & IpData() const
Definition: IpAlgStrategy.hpp:131
Ipopt::InexactNewtonNormalStep::operator=
void operator=(const InexactNewtonNormalStep &)
Overloaded Equals Operator.
IpAugSystemSolver.hpp
Ipopt::SmartPtr
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:182
Ipopt::IpoptData::AdditionalData
IpoptAdditionalData & AdditionalData()
Get access to additional data object.
Definition: IpIpoptData.hpp:494
Ipopt::InexactNewtonNormalStep::InexCq
InexactCq & InexCq()
Method to easily access Inexact calculated quantities.
Definition: IpInexactNewtonNormal.hpp:60
Ipopt::InexactNewtonNormalStep::InitializeImpl
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
Ipopt::InexactNewtonNormalStep::aug_solver_
SmartPtr< AugSystemSolver > aug_solver_
Object to be used to solve the augmented system.
Definition: IpInexactNewtonNormal.hpp:88
Ipopt::IpoptCalculatedQuantities::AdditionalCq
IpoptAdditionalCq & AdditionalCq()
Definition: IpIpoptCalculatedQuantities.hpp:452
Ipopt::AlgorithmStrategyObject
This is the base class for all algorithm strategy objects.
Definition: IpAlgStrategy.hpp:35
IpAlgStrategy.hpp
DBG_ASSERT
#define DBG_ASSERT(test)
Definition: IpDebug.hpp:38
Ipopt::OptionsList
This class stores a list of user set options.
Definition: IpOptionsList.hpp:32
Ipopt::InexactNewtonNormalStep::~InexactNewtonNormalStep
virtual ~InexactNewtonNormalStep()
Default destructor.
Ipopt::InexactNewtonNormalStep::ComputeNewtonNormalStep
virtual bool ComputeNewtonNormalStep(Vector &newton_x, Vector &newton_s)
Method for computing the normal step.
Ipopt::Vector
Vector Base Class.
Definition: IpVector.hpp:47
Ipopt::InexactCq
Class for all Chen-Goldfarb penalty method specific calculated quantities.
Definition: IpInexactCq.hpp:22
Ipopt::InexactNewtonNormalStep::InexData
InexactData & InexData()
Method to easily access Inexact data.
Definition: IpInexactNewtonNormal.hpp:51