ECF 1.5
FloatingPointCrsBlx.h
1#ifndef FLOATINGPOINTCRSBLX_H_
2#define FLOATINGPOINTCRSBLX_H_
3
4
5namespace FloatingPoint
6{
7
12{
13public:
14 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
15 bool initialize(StateP);
16 void registerParameters(StateP);
17 double alpha;
18 bool useAlpha;
19};
20typedef boost::shared_ptr<FloatingPointCrsBlx> FloatingPointCrsBlxP;
21}
22#endif /* FLOATINGPOINTCRSBLX_H_ */
23
CrossoverOp base class.
Definition: Crossover.h:19
FloatingPoint genotype: value on allele i is random value taken from min-max interval from parents pl...
bool initialize(StateP)
Initialize crossover operator. Called before first crossover operation.
void registerParameters(StateP)
Register parameters with the system. Called before CrossoverOp::initialize.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)