-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.jl
206 lines (193 loc) · 7.52 KB
/
main.jl
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
include("load_data.jl");
include("parametros.jl");
include("helpers.jl");
include("funcionesPLS.jl");
include("solver.jl");
include("PLS.jl");
include("PLSAngel.jl");
using Statistics, TickTock, Plots,XLSX;
#Inicializar variables globales de balance y prioridad.
global balance = 1;
global prioridad = 5;
#Grilla
global M = get_grid();
#Matriz de adyacencia de zonas.
global adjacency_matrix = get_adjacency_matrix();
#Matriz de conexiones.
global c = connection_calculation();
#CREACION DE CENTROS#
setC = [];
centro = zeros(Int64,length(CANDIDATAS));
for i = 1:nCentros
centro = generarC();
push!(setC,centro);
end
name = "centros";
filename = name*".txt"
open(filename, "w") do file
for i in 1:nCentros
aC = copy(setC[i]);
if i!=nCentros
write(file, "$aC\n");
else
write(file, "$aC");
end
end
end
XLSX.openxlsx("Resultados.xlsx", mode="w") do xf
sheet = xf[1]
XLSX.rename!(sheet, "Resultados")
sheet["A1"] = "Prioridad $(prioridad)"
sheet["B1"] = "Min Epsilon $(minEpsilon)"
sheet["C1"] = "Max Epsilon $(maxEpsilon)"
sheet["A2"] = "Experimento/Epsilon"
sheet["B2"] = 0.2
sheet["C2"] = 0.3
sheet["D2"] = 0.4
sheet["E2"] = 0.5
sheet["F2"] = 0.6
sheet["G2"] = 0.7
sheet["H2"] = 0.8
sheet["I2"] = 0.9
sheet["J2"] = 1.0
sheet["K2"] = "Segundos"
sheet["L2"] = "Iteraciones"
sheet["M2"] = "Hipervolumen"
numero = 3
for i=1:nCentros
println("Prueba con centro nº ",i);
for l = 1:length(array_len_N)
len_N = array_len_N[l];
println("Prueba con largo vecindario = ",len_N);
for n = 1:length(array_neighborhood_structure)
neighborhood_structure = array_neighborhood_structure[n];
println("Prueba con estructura vecinos = ",neighborhood_structure);
for e = 1:expPaquete
println("Experimento nº ",e);
println("Experimento Paquete");
A = solucion[]
A,segundos,ite = PLS(len_N,neighborhood_structure,e,setC[i],i);
f1P = []
f2P = []
for f = 1:length(A)
push!(f1P,A[f].f1)
push!(f2P,A[f].f2)
end
hipervol = hyperVolume(A,450000,1.2)
#fig = scatter(f1P,f2P,label="Archivo Paquete")
#fn = "Paquete_$(e)_Centro_$(i)_Prioridad_$(prioridad)_Epsilon_$(minEpsilon)-$(maxEpsilon)"
#savefig(fn)
#savefig(fig, fn)
for f = 1:length(A)
if(A[f].f2 == 0.2)
activa = "B$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.3)
activa = "C$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.4)
activa = "D$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.5)
activa = "E$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.6)
activa = "F$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.7)
activa = "G$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.8)
activa = "H$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.9)
activa = "I$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 1.0)
activa = "J$(numero)"
sheet[activa] = A[f].f1
end
end
activa = "A$(numero)"
sheet[activa] = "Paquete_Centro_$(i)_Exp_$(e)"
activa = "K$(numero)"
sheet[activa] = segundos
activa = "L$(numero)"
sheet[activa] = ite
activa = "M$(numero)"
sheet[activa] = hipervol
numero += 1
println("Experimento Angel");
A = solucion[]
A,segundos,ite = PLSAngel(len_N,neighborhood_structure,setC[i],i,e);
f1A = []
f2A = []
for f = 1:length(A)
push!(f1A,A[f].f1)
push!(f2A,A[f].f2)
end
hipervol = hyperVolume(A,450000,1.2)
#fig = scatter(f1A,f2A,label="Archivo Angel")
#fn = "Angel_$(e)_Centro_$(i)_Prioridad_$(prioridad)_Epsilon_$(minEpsilon)-$(maxEpsilon)"
#savefig(fn)
#savefig(fig, fn)
for f = 1:length(A)
if(A[f].f2 == 0.2)
activa = "B$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.3)
activa = "C$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.4)
activa = "D$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.5)
activa = "E$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.6)
activa = "F$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.7)
activa = "G$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.8)
activa = "H$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 0.9)
activa = "I$(numero)"
sheet[activa] = A[f].f1
end
if(A[f].f2 == 1.0)
activa = "J$(numero)"
sheet[activa] = A[f].f1
end
end
activa = "A$(numero)"
sheet[activa] = "Angel_Centro_$(i)_Exp_$(e)"
activa = "K$(numero)"
sheet[activa] = segundos
activa = "L$(numero)"
sheet[activa] = ite
activa = "M$(numero)"
sheet[activa] = hipervol
numero += 1
end
end
end
end
end