Ipopt  3.11.9
SensSchurDriver.hpp
Go to the documentation of this file.
1 // Copyright 2009, 2011 Hans Pirnay
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // Date : 2009-05-06
6 
7 #ifndef __ASSCHURDRIVER_HPP__
8 #define __ASSCHURDRIVER_HPP__
9 
10 #include "SensSchurData.hpp"
11 #include "SensPCalculator.hpp"
12 #include "IpVector.hpp"
13 #include "IpIteratesVector.hpp"
14 
15 namespace Ipopt
16 {
17 
19  {
29  public:
30 
33  :
34  pcalc_(pcalc),
36  {
37  }
38 
39  virtual ~SchurDriver()
40  {
41  }
42 
44  virtual bool InitializeImpl(const OptionsList& options,
45  const std::string& prefix)
46  {
47  return true;
48  }
49 
52  {
53  return pcalc_->data_A();
54  }
55 
57  {
58  return ConstPtr(data_B_);
59  }
60 
62  {
63  return pcalc_->data_A_nonconst();
64  }
65 
67  {
68  return data_B_;
69  }
70 
72  {
73  return ConstPtr(pcalc_);
74  }
75 
77  {
78  return pcalc_;
79  }
80 
84  virtual bool SchurBuild() =0;
85 
87  virtual bool SchurFactorize() =0;
88 
92  SmartPtr<Vector> delta_u,
93  SmartPtr<IteratesVector> sol=NULL)=0; // the vector K^(-1)*r_s which usually should have been computed before.
94 
95 
101  private:
103  {
104  }
105 
107 
109  };
110 }
111 
112 #endif
Ipopt::SchurDriver::SchurSolve
virtual bool SchurSolve(SmartPtr< IteratesVector > lhs, SmartPtr< const IteratesVector > rhs, SmartPtr< Vector > delta_u, SmartPtr< IteratesVector > sol=NULL)=0
Performs a backsolve on S and K.
Ipopt::SchurDriver::~SchurDriver
virtual ~SchurDriver()
Definition: SensSchurDriver.hpp:39
Ipopt::SchurDriver::SchurBuild
virtual bool SchurBuild()=0
Sets the Data for which this SchurMatrix will be built.
Ipopt::SchurDriver::SchurDriver
SchurDriver()
Performs a backsolve on S and K; calls the latter with sol=K^(-1)*r_s=0 virtual bool SchurSolve(Smart...
Definition: SensSchurDriver.hpp:102
Ipopt::SchurDriver::pcalc
virtual SmartPtr< const PCalculator > pcalc() const
Definition: SensSchurDriver.hpp:71
Ipopt
Definition: matlabjournal.hpp:14
Ipopt::SchurDriver::data_A_nonconst
virtual SmartPtr< SchurData > data_A_nonconst()
Definition: SensSchurDriver.hpp:61
Ipopt::SchurDriver::data_B
virtual SmartPtr< const SchurData > data_B() const
Definition: SensSchurDriver.hpp:56
IpIteratesVector.hpp
Ipopt::SchurDriver::pcalc_nonconst
virtual SmartPtr< PCalculator > pcalc_nonconst()
Definition: SensSchurDriver.hpp:76
Ipopt::SmartPtr
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:183
SensSchurData.hpp
Ipopt::SchurDriver::InitializeImpl
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
Overloaded from AlgorithmStrategyObject.
Definition: SensSchurDriver.hpp:44
Ipopt::SchurDriver
Definition: SensSchurDriver.hpp:19
Ipopt::ConstPtr
SmartPtr< const U > ConstPtr(const SmartPtr< U > &smart_ptr)
Definition: IpSmartPtr.hpp:582
Ipopt::SchurDriver::SchurDriver
SchurDriver(SmartPtr< PCalculator > pcalc, SmartPtr< SchurData > data_B)
This class is the interface for any class that deals with the Schur matrix from the point when it is ...
Definition: SensSchurDriver.hpp:31
Ipopt::AlgorithmStrategyObject
This is the base class for all algorithm strategy objects.
Definition: IpAlgStrategy.hpp:36
IpVector.hpp
Ipopt::SchurDriver::data_B_
SmartPtr< SchurData > data_B_
Definition: SensSchurDriver.hpp:108
Ipopt::SchurDriver::SchurFactorize
virtual bool SchurFactorize()=0
Calls the factorization routine for the SchurMatrix.
Ipopt::OptionsList
This class stores a list of user set options.
Definition: IpOptionsList.hpp:33
Ipopt::SchurDriver::data_B_nonconst
virtual SmartPtr< SchurData > data_B_nonconst()
Definition: SensSchurDriver.hpp:66
SensPCalculator.hpp
Ipopt::SchurDriver::pcalc_
SmartPtr< PCalculator > pcalc_
Definition: SensSchurDriver.hpp:106
Ipopt::SchurDriver::data_A
virtual SmartPtr< const SchurData > data_A() const
Const accessor methods to the SchurData for for the derived classes.
Definition: SensSchurDriver.hpp:51