Ipopt  3.12.12
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpOrigIterationOutput.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2011 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpOrigIterationOutput.hpp 2167 2013-03-08 11:15:38Z stefan $
6 //
7 // Authors: Andreas Waechter, Carl Laird IBM 2004-09-27
8 
9 #ifndef __IPORIGITERATIONOUTPUT_HPP__
10 #define __IPORIGITERATIONOUTPUT_HPP__
11 
12 #include "IpIterationOutput.hpp"
13 
14 namespace Ipopt
15 {
16 
20  {
21  public:
26 
28  virtual ~OrigIterationOutput();
30 
32  virtual bool InitializeImpl(const OptionsList& options,
33  const std::string& prefix);
34 
38  virtual void WriteOutput();
39 
42  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
44 
45  private:
54 
56  void operator=(const OrigIterationOutput&);
58 
62 
65 
70  };
71 
72 } // namespace Ipopt
73 
74 #endif
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
Methods for OptionsList.
virtual ~OrigIterationOutput()
Default destructor.
virtual void WriteOutput()
Method to do all the summary output per iteration.
InfPrOutput
enumeration for different inf_pr output options
double Number
Type of all numbers.
Definition: IpTypes.hpp:17
OrigIterationOutput()
Default Constructor.
Class for the iteration summary output for the original NLP.
bool print_info_string_
Flag indicating weather info string should be printed at end of iteration summary line...
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:172
This class stores a list of user set options.
InfPrOutput inf_pr_output_
Option indication what should be printed in inf_pr column.
Number print_frequency_time_
Option indicating at which time frequency the summary line should be printed.
Base class for objects that do the output summary per iteration.
void operator=(const OrigIterationOutput &)
Overloaded Equals Operator.
int print_frequency_iter_
Option indicating at which iteration frequency the summary line should be printed.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject