00001 // Copyright (C) 2004, 2006 International Business Machines and others. 00002 // All Rights Reserved. 00003 // This code is published under the Common Public License. 00004 // 00005 // $Id: IpIterationOutput.hpp 759 2006-07-07 03:07:08Z andreasw $ 00006 // 00007 // Authors: Andreas Waechter, Carl Laird IBM 2004-09-27 00008 00009 #ifndef __IPITERATIONOUTPUT_HPP__ 00010 #define __IPITERATIONOUTPUT_HPP__ 00011 00012 #include "IpAlgStrategy.hpp" 00013 #include "IpIpoptNLP.hpp" 00014 #include "IpIpoptData.hpp" 00015 #include "IpIpoptCalculatedQuantities.hpp" 00016 00017 namespace Ipopt 00018 { 00019 00022 class IterationOutput: public AlgorithmStrategyObject 00023 { 00024 public: 00028 IterationOutput() 00029 {} 00030 00032 virtual ~IterationOutput() 00033 {} 00035 00037 virtual bool InitializeImpl(const OptionsList& options, 00038 const std::string& prefix) = 0; 00039 00043 virtual void WriteOutput() = 0; 00044 00045 private: 00053 IterationOutput(const IterationOutput&); 00054 00056 void operator=(const IterationOutput&); 00058 00059 }; 00060 00061 } // namespace Ipopt 00062 00063 #endif