-
Notifications
You must be signed in to change notification settings - Fork 0
/
EspaciodeCreencias.h
368 lines (273 loc) · 6.75 KB
/
EspaciodeCreencias.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#ifndef ESPACIODECREENCIAS_H
#define ESPACIODECREENCIAS_H
#include "EspaciodePoblacion.h"
#include <Qmap>
class Limite
{
int inferior;
int superior;
public:
Limite()
{
this->inferior = 0;
this->superior = 0;
}
Limite(int inferior, int superior)
{
this->inferior = inferior;
this->superior = superior;
}
void setInferior(int valor)
{
this->inferior = valor;
}
void setSuperior(int valor)
{
this->superior = valor;
}
int getInferior() const
{
return this->inferior;
}
int getSuperior() const
{
return this->superior;
}
};
/*
Conocimiento Normativo:
cN: vector de límites de tipo entero
*/
class ConocimientoNormativo
{
QVector< Limite > cN;
public:
ConocimientoNormativo()
{
}
//Constructor con 4 límites
ConocimientoNormativo(Limite a, Limite b, Limite c, Limite d)
{
cN.push_back(a);
cN.push_back(b);
cN.push_back(c);
cN.push_back(d);
}
~ConocimientoNormativo()
{
this->cN.clear();
}
void insertarLimite(Limite l)
{
this->cN.push_back(l);
}
void editarLimite(int posicion, Limite l)
{
this->cN.replace(posicion, l);
}
Limite obtenerLimite(int posicion)
{
return this->cN.at(posicion);
}
int tamanio()
{
return this->cN.size();
}
bool estaVacio()
{
return this->cN.empty();
}
friend std::ostream & operator << (std::ostream &salida, const ConocimientoNormativo &cn)
{
salida<<"[";
for (int i = 0; i < cn.cN.size(); i++)
{
salida<<"["<<cn.cN.at(i).getInferior()<<","<<cn.cN.at(i).getSuperior();
if (i == cn.cN.size() - 1 )
salida<<"]";
else
salida<<"] ";
}
salida<<"]";
return salida;
}
QString aQString()
{
QString salida;
salida.push_back("[");
for (int i = 0; i < cN.size(); i++)
{
salida.push_back("[" + QString::number(cN.at(i).getInferior()) + "," + QString::number(cN.at(i).getSuperior()));
if (i == cN.size() - 1 )
salida.push_back("]");
else
salida.push_back("] ");
}
salida.push_back("]");
return salida;
}
void limpiar()
{
this->cN.clear();
}
};
extern ConocimientoNormativo cn;
//==================================================
class Fila
{
int v;
size_t io;
float c;
public:
// Constructor por defecto
Fila()
{
this->v = 0;
this->io = 0;
this->c = 0.0f;
}
// Constructor necesario para realizar una busqueda del valor v
Fila(int v)
{
this->v = v;
this->io = 0;
this->c = 0.0f;
}
Fila(int v, size_t io, float c)
{
this->v = v;
this->io = io;
this->c = c;
}
void setValor(int v)
{
this->v = v;
}
void setIO(int io)
{
this->io = io;
}
void setC(float c)
{
this->c = c;
}
int getV()
{
return this->v;
}
int getIO()
{
return this->io;
}
float getC()
{
return this->c;
}
// Sobrecarga del operador == para la busqueda del valor V
bool operator==(const Fila& f)const
{
return this->v == f.v;
}
friend std::ostream & operator << (std::ostream &salida, const Fila &f)
{
salida<<"["<<f.v<<", "<<f.io<<", "<<f.c<<"]";
return salida;
}
QString aQString()
{
QString salida;
salida.push_back("[" + QString::number(v) + ", " + QString::number(io) + ", " + QString::number(c) + "]");
return salida;
}
};
class ConocimientoSituacional
{
/*
* diccionario basado en árbol rojo-negro.
* clave: id del Parámetro, valor: vector de filas (o una tabla/matriz),
* cada fila tiene como columnas: v, io, c.
*/
QMap<int, QVector<Fila> > cS;
public:
ConocimientoSituacional()
{
}
~ConocimientoSituacional()
{
cS.clear();
}
void insertarFila(int parametro, Fila fila)
{
this->cS[parametro].push_back(fila);
}
void editarFila(int parametro, int posicion, Fila fila)
{
this->cS[parametro].replace(posicion, fila);
}
Fila obtenerFila(int parametro, int posicion)
{
return this->cS[parametro].at(posicion);
}
QVector<Fila> obtenerFilas(int parametro)
{
return this->cS[parametro];
}
int tamanioTabla(int parametro)
{
return this->cS[parametro].size();
}
bool tablaVacia(int parametro)
{
return this->cS[parametro].empty();
}
QString aQString()
{
QString salida;
QMap<int, QVector<Fila> >::const_iterator itor = cS.constBegin();
while (itor != cS.constEnd()) {
salida.push_back("P" + QString::number(itor.key() + 1) + ": [");
for (int i = 0; i < itor.value().size(); i++)
{
Fila fila = itor.value().at(i);
salida.push_back(fila.aQString());
if (i == itor.value().size() - 1)
salida.push_back("]");
else
salida.push_back(" ");
}
if (itor != cS.constEnd() - 1)
salida.push_back(", ");
++itor;
}
return salida;
}
friend std::ostream & operator << (std::ostream &salida, const ConocimientoSituacional &cs)
{
QMap<int, QVector<Fila> >::const_iterator itor = cs.cS.constBegin();
salida << "Parametro\tFilas/Parametro\n";
while (itor != cs.cS.constEnd()) {
salida << itor.key() + 1 << "\t[";
for (int i = 0; i < itor.value().size(); i++)
{
salida << itor.value().at(i);
if (i == itor.value().size() - 1)
salida << "]";
else
salida << " ";
}
salida << "\n";
++itor;
}
return salida;
}
bool estaVacio()
{
return this->cS.isEmpty();
}
void limpiar()
{
this->cS.clear();
}
};
extern ConocimientoSituacional cs;
#endif // ESPACIODECREENCIAS_H