Ipopt Documentation  
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 // Authors: Andreas Waechter, Carl Laird IBM 2004-09-27
6 
7 #ifndef __IPORIGITERATIONOUTPUT_HPP__
8 #define __IPORIGITERATIONOUTPUT_HPP__
9 
10 #include "IpIterationOutput.hpp"
11 
12 namespace Ipopt
13 {
14 
18 {
19 public:
21 
24 
26  virtual ~OrigIterationOutput();
28 
29  virtual bool InitializeImpl(
30  const OptionsList& options,
31  const std::string& prefix
32  );
33 
39  virtual void WriteOutput();
40 
42  static void RegisterOptions(
45  );
47 
48 private:
57 
60  const OrigIterationOutput&
61  );
62 
64  void operator=(
65  const OrigIterationOutput&
66  );
68 
73 
76 
79 
82 };
83 
84 } // namespace Ipopt
85 
86 #endif
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
Methods for OptionsList.
virtual ~OrigIterationOutput()
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:15
OrigIterationOutput()
Default Constructor.
Class for the iteration summary output for the original NLP.
This file contains a base class for all exceptions and a set of macros to help with exceptions...
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:171
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 Assignment 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)
Implementation of the initialization method that has to be overloaded by for each derived class...