ECF 1.5
FloatingPointCrsAverage.cpp
1#include "../ECF_base.h"
2#include "FloatingPoint.h"
3
4namespace FloatingPoint
5{
6
8{
9 myGenotype_->registerParameter(state, "crx.average", (voidP) new double(0), ECF::DOUBLE);
10}
11
12
14{
15 voidP sptr = myGenotype_->getParameterValue(state, "crx.average");
16 probability_ = *((double*)sptr.get());
17 return true;
18}
19
20
21bool FloatingPointCrsAverage::mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
22{
23 FloatingPoint* p1 = (FloatingPoint*) (gen1.get());
24 FloatingPoint* p2 = (FloatingPoint*) (gen2.get());
25 FloatingPoint* ch = (FloatingPoint*) (child.get());
26
27 for (uint i = 0; i < p1->realValue.size(); i++) {
28 ch->realValue[i] = 0.5 * (p1->realValue[i]) + 0.5 * (p2->realValue[i]);
29 }
30
31 return true;
32}
33
34}
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
void registerParameters(StateP)
Register parameters with the system. Called before CrossoverOp::initialize.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
bool initialize(StateP)
Initialize crossover operator. Called before first crossover operation.
FloatingPoint class - implements genotype as a vector of floating point values.
Definition: FloatingPoint.h:39
std::vector< double > realValue
vector of floating point values