ECF 1.7
IntGenotypeCrxOp.h
1#include <cmath>
2
3namespace IntGenotype
4{
9 class IntGenotypeCrxOp : public CrossoverOp
10 {
11 public:
12 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
13
14 };
15 typedef std::shared_ptr<IntGenotypeCrxOp> IntGenotypeCrxOpP;
16
17}
IntGenotype genotype: uniform crossover operator.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)