This commit is contained in:
kuepper 2005-10-05 22:08:29 +00:00
commit 3428a464c1
3 changed files with 34 additions and 30 deletions

View file

@ -260,11 +260,11 @@
<ul> <ul>
<li><a href="http://www.cs.bham.ac.uk/Mirrors/ftp.de.uu.net/EC/clife/www/">The <li><a href="http://www.cs.bham.ac.uk/Mirrors/ftp.de.uu.net/EC/clife/www/">The
Hitch-Hiker's Guide to Evolutionary Computation</a>, FAQ for Hitch-Hiker's Guide to Evolutionary Computation</a>, FAQ for
<a href="news:comp.ai.genetic">comp.ai.genetic</a></li>. <a href="news:comp.ai.genetic">comp.ai.genetic</a>.</li>
<li><a href="http://en.wikipedia.org/wiki/Evolutionary_algorithm">Wikipedia</a> <li><a href="http://en.wikipedia.org/wiki/Evolutionary_algorithm">Wikipedia</a>
on Evolutionary algorithms</li>. on Evolutionary algorithms.</li>
<li>Charles Darwin: <a href="http://www.bbc.co.uk/education/darwin/origin/index.htm">The <li>Charles Darwin: <a href="http://www.bbc.co.uk/education/darwin/origin/index.htm">The
Origin of Species</a></li>.x Origin of Species</a>.</li>
</ul> </ul>
</td> </td>
</tr> </tr>

View file

@ -33,11 +33,12 @@
#include <eoTransform.h> #include <eoTransform.h>
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/** /** Breeding: combination of selecting and transforming a population
eoBreed: breeding is thought of a combination of selecting and transforming
a population. For efficiency reasons you might want to build your own Breeding is thought of a combination of selecting and transforming a
eoBreed derived class rather than relying on a seperate select and transform population. For efficiency reasons you might want to build your own
function. eoBreed derived class rather than relying on a seperate select and
transform function.
@see eoSelect, eoTransform, eoSelectTransform @see eoSelect, eoTransform, eoSelectTransform
*/ */
@ -45,8 +46,11 @@ template<class EOT>
class eoBreed : public eoBF<const eoPop<EOT>&, eoPop<EOT>&, void> class eoBreed : public eoBF<const eoPop<EOT>&, eoPop<EOT>&, void>
{}; {};
/**
eoSelectTransform: special breeder that is just an application of an embedded select,
/** Embedded select, followed by an embedded transform
Special breeder that is just an application of an embedded select,
followed by an embedded transform followed by an embedded transform
*/ */
template <class EOT> template <class EOT>