-
Notifications
You must be signed in to change notification settings - Fork 0
/
eoGAWE.h
200 lines (175 loc) · 5.9 KB
/
eoGAWE.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
//-----------------------------------------------------------------------------
// eoGAWE.h
// (c) GeNeura Team, 2000 - EEAAX 1999 - Maarten Keijzer 2000
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Contact: [email protected], http://geneura.ugr.es
*/
//-----------------------------------------------------------------------------
#ifndef _eoGAWE_h
#define _eoGAWE_h
#include <eoInvalidateOps.h>
#include <eoContinue.h>
#include <eoPop.h>
#include <eoSelectOne.h>
#include <eoSelectPerc.h>
#include <eoEvalFunc.h>
#include <eoAlgo.h>
#include <apply.h>
#include <iostream>
/** The Simple Genetic Algorithm,
*
* Needs a selector (class eoSelectOne) a crossover (eoQuad, i.e. a
* 2->2 operator) and a mutation with their respective rates, of
* course an evaluation function (eoEvalFunc) and a continuator
* (eoContinue) which gives the stopping criterion. Performs full
* generational replacement.
*
* @ingroup Algorithms
*/
template <class EOT>
class eoGAWE : public eoAlgo<EOT>
{
public:
// added this second ctor as I didn't like the ordering of the parameters
// in the one above. Any objection :-) MS
eoGAWE(
eoSelectOne<EOT>& _select,
eoQuadOp<EOT>& _cross, float _crate,
eoMonOp<EOT>& _mutate, float _mrate,
eoEvalFunc<EOT>& _eval,
eoContinue<EOT>& _cont)
: cont(_cont),
mutate(_mutate),
mutationRate(_mrate),
cross(_cross),
crossoverRate(_crate),
select(_select),
eval(_eval)
{
}
eoGAWE(
eoSelectPerc<EOT>& _select,
eoQuadOp<EOT>& _cross,
eoMonOp<EOT>& _mutate,
eoEvalFunc<EOT>& _eval,
eoContinue<EOT>& _cont,
unsigned _elite)
: cont(_cont),
mutate(_mutate),
cross(_cross),
select(_select),
elite(_elite),
eval(_eval)
{
//best = NULL;
}
void operator()(eoPop<EOT>& _pop)
{
eoPop<EOT> Q;
int gen = 0;
prevBest = best.fitness();
int stableCounter = 0;
do
{
select(_pop, Q); //select parents from _pop and put in Q
//std::cout<<"Print Q" <<Q;
for (unsigned i = 0; i < (_pop.size() - elite) / 2; i++)
{
// this crossover generates 2 Q from two parents
if (cross(Q[2 * i], Q[2 * i + 1]))
{
Q[2 * i].invalidate();
Q[2 * i + 1].invalidate();
}
if (mutate(Q[2 * i]))
{
Q[2 * i].invalidate();
}
if (mutate(Q[2 * i + 1]))
{
Q[2 * i + 1].invalidate();
}
}
// std::cout <<"Q after breed"<<Q;
//choose best individuals from _pop
typename eoPop<EOT>::iterator it;
for (unsigned i = 0; i < elite; i++)
{
it = _pop.it_best_element();
Q.push_back(*it);
_pop.erase(it);
}
//std::cout <<"Q after add best"<<Q;
// std::cout <<"Best indi:"<<Q[Q.size() - elite]<<std::endl;
std::cout << "Gen:" << gen << std::endl;
/* if(gen == 100)
break;*/
EOT competitor = Q[Q.size() - elite]; //the best in _pop
if (best < competitor) //using adjusted fitness
{
best = competitor;
}
// std::cout << best.D[0] << ',' << best.D[1] << ',' << best.D[2] << ',' << best.Dun << ',' << best.ATT << std::endl;
if (actualBest.actualFitness < competitor.actualFitness)
{
actualBest = competitor;
}
std::cout << actualBest.D[0] << ',' << actualBest.D[1] << ',' << actualBest.D[2] << ',' << actualBest.Dun << ',' << actualBest.ATT << std::endl;
_pop.swap(Q);
apply<EOT > (eval, _pop); //Assess Fitness
if (prevBest == best.fitness())
{
stableCounter++;
if (stableCounter == this->stableCount)
{
_pop.shuffle();
int replace = rng.uniform(0,2);//(_pop.size() - elite) / 4
for (unsigned i = 0; i < replace; i++)
{
_pop[i] = this->initial;
}
break;
}
}
else
{
prevBest = best.fitness();
stableCounter = 0;
}
gen++;
}while (genCount--);
}
private:
eoContinue<EOT>& cont;
/// eoInvalidateMonOp invalidates the embedded operator
eoInvalidateMonOp<EOT> mutate;
float mutationRate;
// eoInvalidateQuadOp invalidates the embedded operator
eoInvalidateQuadOp<EOT> cross;
float crossoverRate;
eoSelectPerc<EOT> select;
unsigned elite;
eoEvalFunc<EOT>& eval;
public:
EOT best;
EOT actualBest;
EOT initial;
int genCount;
int stableCount;
double prevBest;
};
#endif