Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpRestoRestoPhase.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: IpRestoRestoPhase.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2005-02-11
8 
9 #ifndef __IPRESTORESTOPHASE_HPP__
10 #define __IPRESTORESTOPHASE_HPP__
11 
12 #include "IpRestoPhase.hpp"
13 #include "IpIpoptAlg.hpp"
14 #include "IpEqMultCalculator.hpp"
15 
16 namespace Ipopt
17 {
18 
26  {
27  public:
32 
34  virtual ~RestoRestorationPhase();
36 
38  virtual bool InitializeImpl(const OptionsList& options,
39  const std::string& prefix);
40 
41  protected:
43  virtual bool PerformRestoration();
44 
45  private:
54 
56  void operator=(const RestoRestorationPhase&);
58 
63  void solve_quadratic(const Vector& a, const Vector& b, Vector& v);
65  };
66 
67 } // namespace Ipopt
68 
69 #endif
void operator=(const RestoRestorationPhase &)
Overloaded Equals Operator.
RestoRestorationPhase()
Default Constructor.
Vector Base Class.
Definition: IpVector.hpp:47
virtual bool PerformRestoration()
Overloaded method from RestorationPhase.
void solve_quadratic(const Vector &a, const Vector &b, Vector &v)
Method for solving the quadratic vector equation v^2 + 2a*v - b = 0
Recursive Restoration Phase for the.MinC_1NrmRestorationPhase.
This class stores a list of user set options.
Base class for different restoration phases.
virtual ~RestoRestorationPhase()
Default destructor.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
Overloaded from AlgorithmStrategy case class.