-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspaciodePoblacion.h
160 lines (122 loc) · 2.86 KB
/
EspaciodePoblacion.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
#ifndef ESPACIODEPOBLACION_H
#define ESPACIODEPOBLACION_H
#include <QVector>
#include <iostream>
class Individuo
{
QVector<int> p;
float fo;
bool evaluado;
public:
//Constructor por defecto
Individuo()
{
this->fo = 0.0f;
this->evaluado = false;
}
//Constructor con 4 parámetros
Individuo(int p1, int p2, int p3, int p4)
{
p.push_back(p1);
p.push_back(p2);
p.push_back(p3);
p.push_back(p4);
this->fo = 0.0f;
this->evaluado = false;
}
~Individuo()
{
this->p.clear();
this->fo = 0.0f;
this->evaluado = false;
}
void insertarParametro(int val)
{
this->p.push_back(val);
}
void editarParametro(int posicion, int val)
{
this->p.replace(posicion, val);
}
int obtenerParametro(int posicion)
{
return this->p.at(posicion);
}
int cantidadParametros()
{
return this->p.size();
}
void insertarFO(float FO)
{
this->fo = FO;
this->evaluado = true;
}
float obtenerFO()
{
return this->fo;
}
void limpiar()
{
this->p.clear();
this->fo = 0.0f;
}
bool operator<(const Individuo& i)const
{
return this->fo < i.fo;
}
bool operator<=(const Individuo& i)const
{
if (this->fo < i.fo)
return true;
if (this->fo == i.fo && this->p == i.p)
return true;
return false;
}
bool operator>(const Individuo& i)const
{
return this->fo > i.fo;
}
bool operator>=(const Individuo& i)const
{
if (this->fo > i.fo)
return true;
if (this->fo == i.fo && this->p == i.p)
return true;
return false;
}
bool operator==(const Individuo& i)const
{
return
this->p == i.p &&
this->fo == i.fo;
}
friend std::ostream & operator<<(std::ostream &salida, const Individuo &ind)
{
for (int i = 0; i < ind.p.size(); i++)
{
salida << ind.p.at(i) << " ";
}
salida << "| " << ind.fo;
return salida;
}
QString aQString()
{
QString salida;
salida.push_back("[");
for (int i = 0; i < p.size(); i++)
{
salida.push_back(QString::number(p.at(i)));
if (i == p.size() - 1)
salida.push_back("]");
else
salida.push_back(", ");
}
return salida;
}
bool estaEvaluado() const
{
return this->evaluado;
}
};
extern QVector< Individuo > EspaciodePoblacion;
#endif // ESPACIODEPOBLACION_H