ECF 1.5
BitStringCrsOnePoint.h
1#ifndef BitStringCrsOnePoint_h
2#define BitStringCrsOnePoint_h
3
4
5namespace BitString
6{
7
13{
14public:
15 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
16 bool initialize(StateP);
17 void registerParameters(StateP);
18};
19typedef boost::shared_ptr<BitStringCrsOnePoint> BitStrCrsOnePointP;
20}
21#endif // BitStringCrsOnePoint_h
22
BitString genotype: one point 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