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: IpIterateInitializer.hpp 759 2006-07-07 03:07:08Z andreasw $ 00006 // 00007 // Authors: Carl Laird, Andreas Waechter IBM 2004-09-24 00008 00009 #ifndef __IPITERATEINITIALIZER_HPP__ 00010 #define __IPITERATEINITIALIZER_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 IterateInitializer: public AlgorithmStrategyObject 00023 { 00024 public: 00028 IterateInitializer() 00029 {} 00030 00032 virtual ~IterateInitializer() 00033 {} 00035 00037 virtual bool InitializeImpl(const OptionsList& options, 00038 const std::string& prefix) = 0; 00039 00042 virtual bool SetInitialIterates() = 0; 00043 00044 private: 00054 IterateInitializer(const IterateInitializer&); 00055 00057 void operator=(const IterateInitializer&); 00059 00060 }; 00061 00062 } // namespace Ipopt 00063 00064 #endif