Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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 // $Id: IpRestoFilterConvCheck.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
8 //
9 // A Waechter: moved most code to IpRestoConvCheck.cpp 2008-06-24
10 
11 #ifndef __IPRESTOFILTERCONVCHECK_HPP__
12 #define __IPRESTOFILTERCONVCHECK_HPP__
13 
14 #include "IpRestoConvCheck.hpp"
15 #include "IpFilterLSAcceptor.hpp"
16 
17 namespace Ipopt
18 {
19 
26  {
27  public:
32 
36 
42  void SetOrigLSAcceptor(const BacktrackingLSAcceptor& orig_ls_acceptor);
43 
45  virtual bool InitializeImpl(const OptionsList& options,
46  const std::string& prefix);
47 
50  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
52  private:
61 
65 
69  virtual ConvergenceStatus
70  TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta);
71 
78  };
79 
80 } // namespace Ipopt
81 
82 #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:17
Filter line search.
Base class for backtracking line search acceptors.
virtual ~RestoFilterConvergenceCheck()
Default destructor.
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:172
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:35
virtual ConvergenceStatus TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta)
Method for checking progress with original filter globalization mechanism.
void operator=(const RestoFilterConvergenceCheck &)
Overloaded Equals Operator.
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
Methods used by IpoptType.
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