Ipopt  3.11.9
IpRestoIterationOutput.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2006 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpRestoIterationOutput.hpp 2167 2013-03-08 11:15:38Z stefan $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2004-09-27
8 
9 #ifndef __IPRESTOITERATIONOUTPUT_HPP__
10 #define __IPRESTOITERATIONOUTPUT_HPP__
11 
12 #include "IpIterationOutput.hpp"
14 
15 namespace Ipopt
16 {
17 
23  {
24  public:
31  RestoIterationOutput(const SmartPtr<OrigIterationOutput>& resto_orig_iteration_output);
32 
36 
38  virtual bool InitializeImpl(const OptionsList& options,
39  const std::string& prefix);
40 
44  virtual void WriteOutput();
45 
46  private:
55 
58 
62 
65 
69 
72 
77  };
78 
79 } // namespace Ipopt
80 
81 #endif
Base class for objects that do the output summary per iteration.
InfPrOutput
enumeration for different inf_pr output options
This class stores a list of user set options.
Class for the iteration summary output for the restoration phase.
virtual ~RestoIterationOutput()
Default destructor.
RestoIterationOutput(const RestoIterationOutput &)
Copy Constructor.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
SmartPtr< OrigIterationOutput > resto_orig_iteration_output_
Pointer to output strategy object during regular iterations.
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.
virtual void WriteOutput()
Method to do all the summary output per iteration.
bool print_info_string_
Flag indicating weather info string should be printed at end of iteration summary line.
int print_frequency_iter_
Option indicating at which iteration frequency the summary line should be printed.
RestoIterationOutput(const SmartPtr< OrigIterationOutput > &resto_orig_iteration_output)
Constructor.
RestoIterationOutput()
Default Constructor.
void operator=(const RestoIterationOutput &)
Overloaded Equals Operator.
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:183
double Number
Type of all numbers.
Definition: IpTypes.hpp:17