// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- //----------------------------------------------------------------------------- // eoInit.h // (c) Maarten Keijzer 2000, GeNeura Team, 2000 /* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact: todos@geneura.ugr.es, http://geneura.ugr.es Marc.Schoenauer@polytechnique.fr mak@dhi.dk */ //----------------------------------------------------------------------------- #ifndef _eoInit_H #define _eoInit_H #include #include #include #include /** Base (name) class for Initialization of chromosomes, used in a population contructor. It is derived from eoMonOp, so it can be used inside the algorithm as well. @see eoPop */ template class eoInit : public eoUF { public: virtual void operator()(EOT& chrom) { cout << "In the eoInit base class" << endl; } }; /** Initializer for fixed length representations with a single type */ template class eoInitFixedLength: public eoInit { public: typedef typename EOT::AtomType AtomType; eoInitFixedLength(unsigned _combien, eoRndGenerator& _generator) : combien(_combien), generator(_generator) {} virtual void operator()(EOT& chrom) { chrom.resize(combien); std::generate(chrom.begin(), chrom.end(), generator); chrom.invalidate(); } private : unsigned combien; /// generic wrapper for eoFunctor (s), to make them have the function-pointer style copy semantics eoSTLF generator; }; /** Initializor for variable length representations with a single type */ template class eoInitVariableLength: public eoInit { public: eoInitVariableLength(unsigned _minSize, unsigned _maxSize, Gen _generator = Gen()) : offset(_minSize), extent(_maxSize - _minSize), generator(_generator) { if (_minSize >= _maxSize) throw logic_error("eoInitVariableLength: minSize larger or equal to maxSize"); } virtual void operator()(EOT& chrom) { chrom.resize(offset + rng.random(extent)); generate(chrom.begin(), chrom.end(), generator); chrom.invalidate(); } private : unsigned offset; unsigned extent; Gen generator; }; /** eoInitAdaptor changes the place in the hierarchy from eoInit to eoMonOp. This is mainly a type conversion, nothing else . @see eoInit, eoMonOp */ template class eoInitAdaptor : public eoMonOp { public : eoInitAdaptor(eoInit& _init) : init(_init) {} bool operator()(EOT& _eot) { init(_eot); return true; } private : eoInit& init; }; #endif