Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpIterateInitializer.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: IpIterateInitializer.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2004-09-24
8 
9 #ifndef __IPITERATEINITIALIZER_HPP__
10 #define __IPITERATEINITIALIZER_HPP__
11 
12 #include "IpAlgStrategy.hpp"
13 #include "IpIpoptNLP.hpp"
14 #include "IpIpoptData.hpp"
16 
17 namespace Ipopt
18 {
19 
23  {
24  public:
29  {}
30 
33  {}
35 
37  virtual bool InitializeImpl(const OptionsList& options,
38  const std::string& prefix) = 0;
39 
42  virtual bool SetInitialIterates() = 0;
43 
44  private:
55 
57  void operator=(const IterateInitializer&);
59 
60  };
61 
62 } // namespace Ipopt
63 
64 #endif
virtual bool SetInitialIterates()=0
Compute the initial iterates and set the into the curr field of the ip_data object.
This is the base class for all algorithm strategy objects.
Base class for all methods for initializing the iterates.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)=0
overloaded from AlgorithmStrategyObject
This class stores a list of user set options.
void operator=(const IterateInitializer &)
Overloaded Equals Operator.
IterateInitializer()
Default Constructor.
virtual ~IterateInitializer()
Default destructor.