Ipopt Documentation  
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
IpRestoFilterConvCheck.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2008 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
6 //
7 // A Waechter: moved most code to IpRestoConvCheck.cpp 2008-06-24
8 
9 #ifndef __IPRESTOFILTERCONVCHECK_HPP__
10 #define __IPRESTOFILTERCONVCHECK_HPP__
11 
12 #include "IpRestoConvCheck.hpp"
13 #include "IpFilterLSAcceptor.hpp"
14 
15 namespace Ipopt
16 {
17 
23 {
24 public:
26 
29 
33 
41  void SetOrigLSAcceptor(
42  const BacktrackingLSAcceptor& orig_ls_acceptor
43  );
44 
45  virtual bool InitializeImpl(
46  const OptionsList& options,
47  const std::string& prefix
48  );
49 
50  static void RegisterOptions(
52 
53 private:
62 
66  );
67 
69  void operator=(
71  );
73 
78  Number orig_trial_barr,
79  Number orig_trial_theta
80  );
81 
91 };
92 
93 } // namespace Ipopt
94 
95 #endif
void SetOrigLSAcceptor(const BacktrackingLSAcceptor &orig_ls_acceptor)
Set the object for the original filter line search.
RestoFilterConvergenceCheck()
Default Constructor.
double Number
Type of all numbers.
Definition: IpTypes.hpp:15
Filter line search procedure.
Base class for backtracking line search acceptors.
virtual ~RestoFilterConvergenceCheck()
Destructor.
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:171
This class stores a list of user set options.
This is the implementation of the restoration convergence check is the original algorithm used the fi...
ConvergenceStatus
Convergence return enum.
Definition: IpConvCheck.hpp:31
virtual ConvergenceStatus TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta)
Method for checking progress with original filter globalization mechanism.
void operator=(const RestoFilterConvergenceCheck &)
Default Assignment Operator.
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
const FilterLSAcceptor * orig_filter_ls_acceptor_
Strategy object for the filter line search method for the original NLP.
Convergence check for the restoration phase.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject