ECF 1.5
BinaryCrsShuffle.h
1#ifndef BINARYCRSSHUFFLE_H_
2#define BINARYCRSSHUFFLE_H_
3
4
5namespace Binary
6{
7
8
14{
15public:
16 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
17 bool initialize(StateP);
18 void registerParameters(StateP);
19};
20typedef boost::shared_ptr<BinaryCrsShuffle> BinaryCrsShuffleP;
21}
22
23#endif /* BINARYCRSSHUFFLE_H_ */
24
Binary genotype: shuffle crossover operator.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
void registerParameters(StateP)
Register parameters with the system. Called before CrossoverOp::initialize.
bool initialize(StateP)
Initialize crossover operator. Called before first crossover operation.
CrossoverOp base class.
Definition: Crossover.h:19