updated include dependencies
This commit is contained in:
parent
6b0cfffe09
commit
40f5377cf1
21 changed files with 87 additions and 59 deletions
|
|
@ -60,5 +60,14 @@ class eoBinHomologousCrossover : public eoBinOp<EoType> {
|
|||
};
|
||||
|
||||
|
||||
extern bool size_level_xover(Sym& a, const Sym& b);
|
||||
template <class EoType>
|
||||
class eoSizeLevelCrossover : public eoBinOp<EoType> {
|
||||
public:
|
||||
bool operator()(EoType& a, const EoType& b) {
|
||||
return size_level_xover(a,b);
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Reference in a new issue