Ipopt 3.11.9
Loading...
Searching...
No Matches
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
17namespace Ipopt
18{
19
23 {
24 public:
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
59
60 };
61
62} // namespace Ipopt
63
64#endif
This is the base class for all algorithm strategy objects.
Base class for all methods for initializing the iterates.
IterateInitializer(const IterateInitializer &)
Copy Constructor.
virtual ~IterateInitializer()
Default destructor.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)=0
overloaded from AlgorithmStrategyObject
virtual bool SetInitialIterates()=0
Compute the initial iterates and set the into the curr field of the ip_data object.
IterateInitializer()
Default Constructor.
void operator=(const IterateInitializer &)
Overloaded Equals Operator.
This class stores a list of user set options.