EvolvingObjects
|
00001 // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- 00002 00003 //----------------------------------------------------------------------------- 00004 // eoSimpleEDA.h 00005 // (c) Marc Schoenauer, Maarten Keijzer, 2001 00006 /* 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Lesser General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library; if not, write to the Free Software 00019 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 00021 Contact: Marc.Schoenauer@polytechnique.fr 00022 mkeijzer@dhi.dk 00023 */ 00024 //----------------------------------------------------------------------------- 00025 00026 #ifndef _eoSimpleEDA_h 00027 #define _eoSimpleEDA_h 00028 00029 //----------------------------------------------------------------------------- 00030 00031 #include <apply.h> 00032 #include <eoEDA.h> 00033 #include <eoContinue.h> 00034 #include <eoDistribUpdater.h> 00035 #include <eoEvalFunc.h> 00036 00048 template<class EOT> class eoSimpleEDA: public eoEDA<EOT> 00049 { 00050 public: 00051 00055 eoSimpleEDA(eoDistribUpdater<EOT>& _update, 00056 eoEvalFunc<EOT>& _eval, 00057 unsigned _popSize, 00058 eoContinue<EOT>& _continuator 00059 ) : 00060 update(_update), 00061 eval(_eval), 00062 popSize(_popSize), 00063 continuator(_continuator) 00064 {} 00065 00071 virtual void operator()(eoDistribution<EOT>& _distrib) 00072 { 00073 eoPop<EOT> pop(popSize, _distrib); 00074 do 00075 { 00076 try 00077 { 00078 apply<EOT>(_distrib, pop); // re-init. of _pop from distrib 00079 00080 apply<EOT>(eval, pop); // eval of current population 00081 00082 update(_distrib, pop); // updates distrib from _pop 00083 00084 } 00085 catch (std::exception& e) 00086 { 00087 std::string s = e.what(); 00088 s.append( " in eoSimpleEDA"); 00089 throw std::runtime_error( s ); 00090 } 00091 } while ( continuator( pop ) ); 00092 } 00093 00094 private: 00095 eoDistribUpdater<EOT> & update; 00096 00097 eoEvalFunc<EOT>& eval; 00098 00099 unsigned popSize; 00100 00101 eoContinue<EOT>& continuator; 00102 }; 00103 00104 //----------------------------------------------------------------------------- 00105 00106 #endif