ECF 1.5
BinaryCrsReducedSurrogate.cpp
1#include "../ECF_base.h"
2#include "Binary.h"
3
4namespace Binary
5{
6
8{
9 myGenotype_->registerParameter(state, "crx.reducedsurrogate", (voidP) new double(0), ECF::DOUBLE);
10}
11
12
14{
15 voidP sptr = myGenotype_->getParameterValue(state, "crx.reducedsurrogate");
16 probability_ = *((double*)sptr.get());
17 return true;
18}
19
20
21bool BinaryCrsReducedSurrogate::mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
22{
23 Binary* p1 = (Binary*) (gen1.get());
24 Binary* p2 = (Binary*) (gen2.get());
25 Binary* ch = (Binary*) (child.get());
26
27 for (uint dimension = 0; dimension < p1->variables.size(); dimension++) {
28
29 std::vector<int> reduced;
30 for(uint i = 0; i < p1->getNumBits(); i++) {
31 if (p1->variables[dimension][i] != p2->variables[dimension][i])
32 reduced.push_back((int)i);
33 }
34
35 uint bitCrs;
36 int location=-1;
37
38 if (reduced.size() > 0 ) {
39 location = state_->getRandomizer()->getRandomInteger((int) reduced.size());
40 bitCrs=reduced[location];
41 }
42
43 uint parent = state_->getRandomizer()->getRandomInteger(0, 1);
44
45 for(uint i = 0; i < p1->getNumBits(); i++) {
46 if (p1->variables[dimension][i] == p2->variables[dimension][i])
47 ch->variables[dimension][i] = p1->variables[dimension][i];
48 else {
49 if (parent==0) {
50 if (i < bitCrs)
51 ch->variables[dimension][i] = p1->variables[dimension][i];
52 else
53 ch->variables[dimension][i] = p2->variables[dimension][i];
54 }
55 else {
56 if (i < bitCrs)
57 ch->variables[dimension][i] = p2->variables[dimension][i];
58 else
59 ch->variables[dimension][i] = p1->variables[dimension][i];
60 }
61 }
62 }
63 }
64
65 ch->update();
66
67 return true;
68}
69
70}
void registerParameters(StateP)
Register parameters with the system. Called before CrossoverOp::initialize.
bool initialize(StateP)
Initialize crossover operator. Called before first crossover operation.
bool mate(GenotypeP gen1, GenotypeP gen2, GenotypeP child)
Binary class - implements genotype as a vector of binary coded real values with variable interval and...
Definition: Binary.h:38
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