ECF 1.7
PermutationCrsOX.h
1#ifndef PERMUTATIONCRSOX_H
2#define PERMUTATIONCRSOX_H
3
4
5namespace Permutation
6{
7
12class PermutationCrsOX : public CrossoverOp
13{
14public:
15 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
16 bool initialize(StateP);
17 void registerParameters(StateP);
18};
19typedef std::shared_ptr<PermutationCrsOX> PermutationCrsOXP;
20}
21#endif //PERMUTATIONCRSPMX_H
Permutation genotype: OX crossover operator (see e.g. http://dx.doi.org/10.1016/j....
bool initialize(StateP)
Initialize crossover operator. Called before first crossover operation.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
void registerParameters(StateP)
Register parameters with the system. Called before CrossoverOp::initialize.