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 // $Id: IpRestoPenaltyConvCheck.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Andreas Waechter IBM 2008-06-24
8 // based on IpRestoFilterConvCheck.hpp
9 
10 #ifndef __IPRESTOPENALTYCONVCHECK_HPP__
11 #define __IPRESTOPENALTYCONVCHECK_HPP__
12 
13 #include "IpRestoConvCheck.hpp"
14 #include "IpPenaltyLSAcceptor.hpp"
15 
16 namespace Ipopt
17 {
18 
25  {
26  public:
31 
35 
41  void SetOrigLSAcceptor(const BacktrackingLSAcceptor& orig_ls_acceptor);
42 
44  virtual bool InitializeImpl(const OptionsList& options,
45  const std::string& prefix);
46 
49  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
51  private:
60 
64 
68  virtual ConvergenceStatus
69  TestOrigProgress(Number orig_trial_barr, Number orig_trial_theta);
70 
77  };
78 
79 } // namespace Ipopt
80 
81 #endif