-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpedibus_edo.py
327 lines (247 loc) · 8.09 KB
/
pedibus_edo.py
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
import time
start = time.time() #faccio partire il tempo
############## IMPORT LIBRARIES ##############
from itertools import chain
from collections import defaultdict
import copy
import numpy as np
import pprint as pp
import math
import itertools
import operator
############## FUNCTION DECLARATION ##############
def pairwise(iterable):
a = iter(iterable)
return izip(a, a)
def parse_dat_file(dat_file):
file_dat = np.genfromtxt(file, delimiter='\n', dtype=None)
n = int(file_dat[1][11:]) #parse param n: dimension of array
ALPHA = float(file_dat[3][15:]) #parse param alpha
file_dat = file_dat[5:]
raw_x = []
raw_y = []
raw_d = []
costs = []
#start split coord x in vector raw_x and idem for y
for row in file_dat:
if "coordX" in row:
isX = True
isY = False
isD = False
if "coordY" in row:
isX = False
isY = True
isD = False
if "d [*,*]" in row:
isY = False
isD = True
if isX:
raw_x.append(" ".join(row.split()))
if isY:
raw_y.append(" ".join(row.split()))
if isD:
raw_d.append(" ".join(row.split()))
#delete initial words and final semicolumn
raw_x.pop(0)
raw_x.pop(len(raw_x)-1)
raw_y.pop(0)
raw_y.pop(len(raw_y)-1)
raw_d.pop(0)
raw_d.pop(0)
raw_d.pop(len(raw_d)-1)
raw_d =' '.join(raw_d)
raw_d = raw_d.split(' ')
raw_x =' '.join(raw_x)
raw_x = raw_x.split(' ')
raw_y =' '.join(raw_y)
raw_y = raw_y.split(' ')
#transfer vector raw_x in a dictionary. key=index, value=coordX
i=0
for column in raw_x:
if i%2 == 0:
even = int(column)
if i%2 != 0:
coord_x[even] = int(column)
i = i+1
#transfer vector raw_y in a dictionary. key=index, value=coordY
i=0
for column in raw_y:
if i%2 == 0:
even = int(column)
if i%2 != 0:
coord_y[even] = int(column)
i = i+1
#transfer raw_d in a matrix
row = []
danger = []
for i in range (0, len(raw_d)+1):
if (i%(n+2)) != 0:
row.append(float(raw_d[i]))
else:
if i != 0:
danger.append(row)
row = []
costs = [costs[:] for costs in [[0] * (n + 1)] * (n + 1)]
for i in range(0, (n+1)):
for j in range(0, (n+1)):
costs[i][j] = float("{0:.4f}".format(math.sqrt((coord_x[i]-coord_x[j])**2 + (coord_y[i]-coord_y[j])**2)))
print coord_x
#possibile ottimizzare le fusione in un unico dizionario, anche piu sopra
#merge the two dictionaries
coord = defaultdict(list)
for k, v in chain(coord_x.items(), coord_y.items()):
coord[k].append(v)
return n, ALPHA, coord, danger, costs
#calcola distanza euclidea tra due nodi
def node_dist(index_1, index_2):
sub_x = math.pow((node[index_1][0] - node[index_2][0]), 2)
sub_y = math.pow((node[index_1][1] - node[index_2][1]), 2)
return round(math.sqrt(sub_x + sub_y), 4)
#crea dizionario con distanza di un nodo ad ogni altro nodo
def node_distance():
for key1, value1 in node.items():
distance.clear()
for key2, value2 in node.items():
if key1 != key2:
distance[key2] = node_dist(key1, key2)
neighbor[key1] = distance.copy()
return neighbor
#popola l'albero della soluzione con la soluzione base
def create_starting_solution():
for i in range(1,n+1):
tree[i].append(i)
tree[i].append(0)
return tree
#eliminare il nodo myNode
def delete_node(myNode):
for i in range (1, len(tree)+1):
if myNode in tree[i]:
tree[i].remove(myNode)
#rimuovere nodi solo con 0
def remove_zero_path(my_dict):
bool_elim = False
for i in range(1, len(my_dict)+1):
if len(my_dict[i]) == 1:
bool_elim = True
elim = i
if bool_elim:
del my_dict[elim]
return my_dict
#controlla alpha condition, new_path e' in path con anche il nuovo nodo, new_node e' il nuovo nodo
def check_alpha(new_path):
dist_tot = 0 #inizializzo distanza totale a zero
final_leaf = costs[new_path[0]][0] #nodo finale del path, quello dal quale controllare la distanza
times_alpha = ALPHA*final_leaf
for i in range (len(new_path)-1):
dist_tot = dist_tot + costs[new_path[i]][new_path[i+1]]
print dist_tot
print new_path
if dist_tot <= times_alpha:
#se condizione alfa e' soddisfatta controllare se la condizione alfa va bene anche per
#il path piu' piccolo all'interno del path precedente e cosi' via
if (len(new_path)) > 3:
new_path.pop(0)
if check_alpha(new_path):
return True
else: return True
else:
return False
#creo cluster: creo un dizionario.
#le key sono i nodi, i value sono una lista con i nodi all'interno del raggio alpha*distanza da root
def create_cluster():
single_cluster = []
for key in node.items(): #scandisco tutti i nodi
if key[0] != 0: #salto il nodo 0
alpha_range = ALPHA*neighbor[key[0]][0]
node_sorted = sorted(neighbor[key[0]].items(), key=operator.itemgetter(1)) #ordinare per vicinanza i nodi rispetto al nodo tra quadre
del single_cluster[:]
for j in range (len(node_sorted)):
if node_sorted[j][0] != 0: #il nodo 0 (scuola) non deve essere nel cluster
if node_sorted[j][1] <= alpha_range:
single_cluster.append(node_sorted[j][0])
cluster[key[0]] = list(single_cluster) #copia il cluster attuale nel dizionario di cluster
return cluster
#ritorna il cluster piu' grande. Ritorna lunghezza, valori cluster e id cluster. magari si puo' far ritornare meno roba
def getMaxCluster(my_cluster):
return max((len(v), v, k) for k, v in my_cluster.iteritems())
#instanzia una lista con tutti i nodi non presi nella soluzione
def initialize_queue():
for i in range(1, n+1):
queue.append(i)
return queue
#sbabbsbasaa
def create_path(max_cl):
path = []
print cluster[max_cl]
#inserisco lo zero
path.insert(0, 0) #inserisce lo 0 (secondo param) nella posizione 0 (primo param)
pos = 0
#inserisco il primo elemento
path.insert(0, max_cl) #inserisce max_cl (secondo param) nella posizione 0 (primo param)
pos += 1
#parto con l'inserimento degli altri
c_node = cluster[max_cl][0]
candidate_path = list(path)
candidate_path.insert(pos, c_node)
print candidate_path
print "lo inserisco in pos: ", pos
if check_alpha(candidate_path) == True:
path = list(candidate_path)
print "\nPath: ", path
initial_sol[0] = path #metto il path trovato nella soluzione iniziale
cluster.pop(max_cl) #tolgo il cluster utilizzato
print initial_sol
return initial_sol
#calcola il pericolo di un path
def compute_danger(my_path):
path_danger = 0
for i in range(0, len(my_path)-1):
path_danger = path_danger + danger[my_path[i]][my_path[i+1]]
return path_danger
#tra un vettori di path ritorna quello con meno dangerous
def min_dangerous(paths):
min_danger = 9999
min_danger_path = []
for pat in paths:
if compute_danger(pat) < min_danger:
min_danger = compute_danger(pat)
min_danger_path = pat
return min_danger_path
#calcola danger da una soluzione completa
def compute_danger_sol(my_sol):
total_danger = 0
for s_path in my_sol:
total_danger = total_danger + compute_danger(s_path)
return total_danger
############## VARIABLES ##############
#initialize dictionary for bus stop coordinates
coord_x = {} #per coordinate x quando parso il dat
coord_y = {} #per coordinate y quando parso il dat
neighbor = {} #ogni nodo con gli altri per distanza
distance = {} #distanza da un nodo ad un altro, per poi metterla in neighbor
cluster = {} #cluster di ogni nodo (i nodi all'interno del raggio alpha*distanza da root)
queue = [] #nodi non ancora assegnati
initial_sol = {}
tree = defaultdict(list) #lista soluzioni
file = 'res/pedibus_30.dat'
############## BODY ##############
n, ALPHA, node, danger, costs = parse_dat_file(file)
#print parameters for check
print "n: ",n, "\n" "ALPHA: ", ALPHA, "\n\n",
print node
neighbor = node_distance()
pp.pprint(neighbor)
sandro = [3,4,5,7,6,8]
print check_alpha([18, 1, 0])
print "\n\ndange:"
print compute_danger_sol([[4, 1, 0], [9, 4, 8, 0], [7, 5, 3, 0], [6, 1, 0]])
# queue = initialize_queue()
# pp.pprint(cluster)
# _, _, max_cl = getMaxCluster(cluster) #prendo solo l'ultimo elemento del return di max cluster (l'indice del cluster)
# initial_sol = create_path(max_cl)
# _, _, max_cl = getMaxCluster(cluster) #prendo solo l'ultimo elemento del return di max cluster (l'indice del cluster)
# print max_cl
#initial_sol = create_path(max_cl)
############## END BODY ##############
#time
print '\nIt took', time.time()-start, 'seconds.'