ECF 1.5
FloatingPointCrsHeuristic.cpp
1#include "../ECF_base.h"
2#include "FloatingPoint.h"
3
4
5namespace FloatingPoint
6{
7
9{
10 myGenotype_->registerParameter(state, "crx.heuristic", (voidP) new double(0), ECF::DOUBLE);
11}
12
13
15{
16 voidP sptr = myGenotype_->getParameterValue(state, "crx.heuristic");
17 probability_ = *((double*)sptr.get());
18 return true;
19}
20
21
22bool FloatingPointCrsHeuristic::mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
23{
24 FloatingPoint* p1 = (FloatingPoint*) (gen1.get());
25 FloatingPoint* p2 = (FloatingPoint*) (gen2.get());
26 FloatingPoint* ch = (FloatingPoint*) (child.get());
27
28 double a;
29
30 for (uint i = 1; i < p1->realValue.size(); i++) {
31 a = state_->getRandomizer()->getRandomDouble();
32 if (p1->realValue[i] <= p2->realValue[i])
33 ch->realValue[i] = p1->realValue[i] + a*(p2->realValue[i] - p1->realValue[i]);
34 else
35 ch->realValue[i] = p2->realValue[i] + a*(p1->realValue[i] - p2->realValue[i]);
36 }
37
38 return true;
39}
40
41}
double probability_
probability of usage of this crossover operator
Definition: Crossover.h:42
GenotypeP myGenotype_
pointer to the Genotype that defines this CrossoverOp
Definition: Crossover.h:43
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.
FloatingPoint class - implements genotype as a vector of floating point values.
Definition: FloatingPoint.h:39