ECF 1.5
FloatingPointCrsBlxAlphaBeta.h
1#ifndef FLOATINGPOINTCRSBLXALPHABETA_H_
2#define FLOATINGPOINTCRSBLXALPHABETA_H_
3
4
5namespace FloatingPoint
6{
7
13{
14public:
15 bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child);
16 bool initialize(StateP);
17 void registerParameters(StateP);
18
19 double alpha;
20 double beta;
21};
22typedef boost::shared_ptr<FloatingPointCrsBlxAlphaBeta> FloatingPointCrsBlxAlphaBetaP;
23}
24#endif /* FLOATINGPOINTCRSBLXALPHABETA_H_ */
25
CrossoverOp base class.
Definition: Crossover.h:19
FloatingPoint genotype: BLX alpha-beta crossover (http://bib.irb.hr/datoteka/640222....
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.