Ipopt  3.11.8
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpOptErrorConvCheck.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2010 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpOptErrorConvCheck.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2004-08-13
8 
9 #ifndef __IPOPTERRORCONVCHECK_HPP__
10 #define __IPOPTERRORCONVCHECK_HPP__
11 
12 #include "IpConvCheck.hpp"
13 
14 namespace Ipopt
15 {
16 
21  {
22  public:
27 
31 
33  virtual bool InitializeImpl(const OptionsList& options,
34  const std::string& prefix);
35 
37  virtual ConvergenceStatus
38  CheckConvergence(bool call_intermediate_callback = true);
39 
42  virtual bool CurrentIsAcceptable();
43 
46  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
48 
49  protected:
83 
84  private:
93 
97 
101 
105 
109 
112  };
113 
114 } // namespace Ipopt
115 
116 #endif