Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpLeastSquareMults.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2006 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpLeastSquareMults.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2004-09-23
8 
9 #ifndef __IPLEASTSQUAREMULTS_HPP__
10 #define __IPLEASTSQUAREMULTS_HPP__
11 
12 #include "IpAugSystemSolver.hpp"
13 #include "IpEqMultCalculator.hpp"
14 
15 namespace Ipopt
16 {
17 
24  {
25  public:
33  {}
35 
36  /* overloaded from AlgorithmStrategyObject */
37  virtual bool InitializeImpl(const OptionsList& options,
38  const std::string& prefix);
39 
44  virtual bool CalculateMultipliers(Vector& y_c,
45  Vector& y_d);
46 
47  private:
58 
61 
63  void operator=(const LeastSquareMultipliers&);
65 
69  };
70 
71 } // namespace Ipopt
72 
73 #endif
Vector Base Class.
Definition: IpVector.hpp:47
virtual ~LeastSquareMultipliers()
Default destructor.
Base Class for objects that compute estimates for the equality constraint multipliers y_c and y_d...
Class for calculator for the least-square equality constraint multipliers.
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:172
This class stores a list of user set options.
Base class for Solver for the augmented system.
SmartPtr< AugSystemSolver > augsyssolver_
Pointer for the augmented system solver to be used for solving the linear system. ...
void operator=(const LeastSquareMultipliers &)
Overloaded Equals Operator.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
LeastSquareMultipliers()
Default Constructor.
virtual bool CalculateMultipliers(Vector &y_c, Vector &y_d)
This method computes the least-square estimates for y_c and y_d at the current point.