.../
... + -- EO
| |
| |
+-- src ----- + -- EDO
| |
| |
+-- test + -- MO
| |
| |
+-- tutorial + -- MOEO
| |
| |
+-- doc + -- SMP
| |
| |
... + -- EOMPI
|
|
+ -- EOSERIAL
Question for current maintainers: ./README: new release?
Also:
* Moving out eompi & eoserial modules (issue #2).
* Correction of the errors when executing "make doc" command.
* Adding a solution for the conflicting headers problem (see the two CMake Cache
Values: PROJECT_TAG & PROJECT_HRS_INSTALL_SUBPATH) (issue #1)
* Header inclusions:
** src: changing absolute paths into relative paths ('#include <...>' -> '#include "..."')
** test, tutorial: changing relative paths into absolute paths ('#include "..."' -> '#include <...>')
* Moving out some scripts from EDO -> to the root
* Add a new script for compilation and installation (see build_gcc_linux_install)
* Compilation with uBLAS library or EDO module: now ok
* Minor modifications on README & INSTALL files
* Comment eompi failed tests with no end
*** TODO: CPack (debian (DEB) & RedHat (RPM) packages) (issues #6 & #7) ***
76 lines
2.1 KiB
C++
Executable file
76 lines
2.1 KiB
C++
Executable file
/** -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
|
|
|
|
The above line is usefulin Emacs-like editors
|
|
*/
|
|
|
|
/*
|
|
Template for general operators
|
|
===============================
|
|
i.e. that takes any number of parents and generates any number of offspring
|
|
|
|
a GenOp that creates less offspring than there are parents
|
|
|
|
First version, get parents from populator using the imbedded select() method
|
|
*/
|
|
|
|
#ifndef eoLessOffspringSameSelectorGenOp_H
|
|
#define eoLessOffspringSameSelectorGenOp_H
|
|
|
|
#include <eoGenOp.h>
|
|
|
|
/**
|
|
* Always write a comment in this format before class definition
|
|
* if you want the class to be documented by Doxygen
|
|
*
|
|
* ATTENTION, class EOT *must* derive from EO, as method invalidate()
|
|
* must be called if the genotypes of the indis is modified
|
|
*/
|
|
template<class EOT>
|
|
class eoLessOffspringSameSelectorGenOp: public eoGenOp<EOT>
|
|
{
|
|
public:
|
|
/**
|
|
* (Default) Constructor.
|
|
*/
|
|
eoLessOffspringSameSelectorGenOp(paramType _anyParameter) :
|
|
anyParameter(_anyParameter) {}
|
|
|
|
/// The class name. Used to display statistics
|
|
string className() const { return "eoLessOffspringSameSelectorGenOp"; }
|
|
|
|
/// The TOTAL number of offspring (here = nb of remaining modified parents)
|
|
unsigned max_production(void) { return NbLeftParents; }
|
|
|
|
/**
|
|
* eoLesOffspringSameSelectorGenOp operator -
|
|
* gets extra parents from the populator
|
|
*
|
|
* @param _pop a POPULATOR (not a simple population)
|
|
*/
|
|
void apply(eoPopulator<EOT>& _plop)
|
|
{
|
|
// First, select as many parents as you will have offspring
|
|
EOT& parent1 = *_plop; // select the first parent
|
|
++_plop; // advance once for each selected parents
|
|
...
|
|
EOT& parentN = *_plop; // say you want N offspring
|
|
|
|
// Now select extra parents from the populator
|
|
EOT& parentN+1 = _plop.select();
|
|
...
|
|
EOT& parentN+K = _plop.select();
|
|
|
|
// modify the first N parents
|
|
...
|
|
|
|
// oh right, and invalidate their fitnesses
|
|
parent1.invalidate();
|
|
...
|
|
parentN.invalidate();
|
|
}
|
|
|
|
private:
|
|
paramType anyParameter
|
|
};
|
|
|
|
#endif
|