Ipopt Documentation  
IpRestoPenaltyConvCheck.hpp
Go to the documentation of this file.
1 // Copyright (C) 2008 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // Authors: Andreas Waechter IBM 2008-06-24
6 // based on IpRestoFilterConvCheck.hpp
7 
8 #ifndef __IPRESTOPENALTYCONVCHECK_HPP__
9 #define __IPRESTOPENALTYCONVCHECK_HPP__
10 
11 #include "IpRestoConvCheck.hpp"
12 #include "IpPenaltyLSAcceptor.hpp"
13 
14 namespace Ipopt
15 {
16 
22 {
23 public:
25 
28 
32 
40  void SetOrigLSAcceptor(
41  const BacktrackingLSAcceptor& orig_ls_acceptor
42  );
43 
44  virtual bool InitializeImpl(
45  const OptionsList& options,
46  const std::string& prefix
47  );
48 
49  static void RegisterOptions(
51  );
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
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
const PenaltyLSAcceptor * orig_penalty_ls_acceptor_
Strategy object for the filter line search method for the original NLP.
double Number
Type of all numbers.
Definition: IpTypes.hpp:15
Penalty function line search.
Base class for backtracking line search acceptors.
This file contains a base class for all exceptions and a set of macros to help with exceptions...
virtual ~RestoPenaltyConvergenceCheck()
Destructor.
This is the implementation of the restoration convergence check is the original algorithm used the fi...
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:171
This class stores a list of user set options.
ConvergenceStatus
Convergence return enum.
Definition: IpConvCheck.hpp:31
RestoPenaltyConvergenceCheck()
Default Constructor.
virtual ConvergenceStatus TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta)
Method for checking progress with original filter globalization mechanism.
Convergence check for the restoration phase.
void operator=(const RestoPenaltyConvergenceCheck &)
Default Assignment Operator.
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
void SetOrigLSAcceptor(const BacktrackingLSAcceptor &orig_ls_acceptor)
Set the object for the original penalty line search.