-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mcmd2_result_5_cht.py
822 lines (579 loc) · 24 KB
/
mcmd2_result_5_cht.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
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
#!/usr/bin/env python
# coding: utf-8
# In[63]:
from collections import defaultdict, OrderedDict, Counter
import networkx as nx
import numpy as np
import peartree as pt
import random
############### MY MODULES ###############
import sim
from sensor import *
from scenerio import *
# In[64]:
############ GLOBAL VARIABLES #############
def reset_network():
global_variables = {
'time_table': None,
'feed': None,
'G': None,
'stop_times': None,
'routes': None,
'trips': None,
'all_routes': None,
'all_trips': None,
'stop_times_dict': None,
'trips_per_stop': None,
'routes_per_stop': None,
'stop_ranks': None,
'route_subgraphs': None,
'edge_departures': None,
'trip_subgraphs': None,
'stops_per_trip': None
}
globals().update(global_variables)
def reset_sim():
global_variables = {
'error': 0,
'routes_per_gateway': None,
'gateways_per_route': None,
'all_gateways': None,
'all_sensors': None,
'sensor_count': None,
'sensor_objects': None,
}
globals().update(global_variables)
# In[65]:
################## HELPER FUNCTIONS ##################
def get_stopid(node_name):
return node_name.split('_')[-1]
def namify_stop(g_name,stop_id):
return "{0}_{1}".format(g_name,stop_id)
def invert_dict(d):
inverted_d = defaultdict(set)
for k in d.keys():
for v in d[k]:
inverted_d[v].add(k)
return inverted_d
# I don't think this is useful
def get_routes_per_stop_id(stop_id):
for stop_id in time_table.stop_id.unique():
routes = time_table[time_table.stop_id == stop_id].route_id.unique()
return set(routes)
def get_time_to_next_departure(current_time, departure_list):
try:
next_departure = min(v for v in departure_list if v >= current_time)
wait_time = next_departure - current_time
except:
wait_time = None
return wait_time
# In[66]:
def load_network():
global feed,G
feed = pt.get_representative_feed('data/gtfs/' + sim.network_file)
G = pt.load_feed_as_graph(feed, sim.start, sim.end, interpolate_times=True)
def load_stop_times():
global stop_times, routes, trips, time_table
stop_times = feed.stop_times
routes = feed.routes
trips = feed.trips
stoptimes_trips = stop_times.merge(trips, left_on='trip_id', right_on='trip_id')
stoptimes_trips_routes = stoptimes_trips.merge(routes, left_on='route_id', right_on='route_id')
columns = ['route_id',
'service_id',
'trip_id',
#'trip_headsign',
'direction_id',
#'block_id',
#'shape_id',
#'route_short_name',
#'route_long_name',
'route_type',
'arrival_time',
'departure_time',
'stop_id',
'stop_sequence'
]
time_table = stoptimes_trips_routes[columns]
def format_stop_times():
global time_table, all_trips, all_routes
#time_table = pt.summarizer._trim_stop_times_by_timeframe(time_table, sim.start, sim.end)
time_table = time_table[~time_table['route_id'].isnull()]
time_table = pt.summarizer._linearly_interpolate_infill_times(
time_table,
use_multiprocessing=False)
if 'direction_id' in time_table:
# If there is such column then check if it contains NaN
has_nan = time_table['direction_id'].isnull()
if sum(has_nan) > 0:
# If it has no full coverage in direction_id, drop the column
time_table.drop('direction_id', axis=1, inplace=True)
# all_routes = set(feed.routes.route_id.values)
all_routes = set(time_table.route_id.unique())
all_trips = set(time_table.trip_id.unique())
def analyze_stops():
global stop_times_dict, trips_per_stop, routes_per_stop, stop_ranks
stop_times_dict = defaultdict(dict)
trips_per_stop = defaultdict(set)
routes_per_stop = defaultdict(set)
routes_per_stop = defaultdict(set)
stop_ranks = OrderedDict()
for i,row in time_table.iterrows():
trips_per_stop[row.stop_id].add(row.trip_id)
routes_per_stop[row.stop_id].add(row.route_id)
d = {}
for k,v in routes_per_stop.items():
d[k] = len(v)
for k in sorted(d, key=d.get, reverse=True):
stop_ranks[k] = d[k]
#stop_ranks = {k:d[k] for k in sorted(d, key=d.get, reverse=True)}
def assign_gateways_to_nodes():
global all_gateways #input
global G #output
attr = {gw:True for gw in all_gateways}
nx.set_node_attributes(G, name='is_gateway', values=attr)
return G
# In[67]:
#### Add departure times of source node to edges
def get_departure_times_per_edge_per_route():
import pandas as pd
global time_table # input
global edge_departures # output
has_dir_col = 'direction_id' in time_table.columns.values
all_deps = []
all_route_ids = []
all_trip_ids = []
all_from_stop_ids = []
all_to_stop_ids = []
for trip_id in time_table.trip_id.unique():
tst_sub = time_table[time_table.trip_id == trip_id]
route = tst_sub.route_id.values[0]
# Just in case both directions are under the same trip id
for direction in [0, 1]:
# Support situations where direction_id is absent from the
# GTFS data. In such situations, include all trip and stop
# time data, instead of trying to split on that column
# (since it would not exist).
if has_dir_col:
dir_mask = (tst_sub.direction_id == direction)
tst_sub_dir = tst_sub[dir_mask]
else:
tst_sub_dir = tst_sub.copy()
tst_sub_dir = tst_sub_dir.sort_values('stop_sequence')
deps = tst_sub_dir.departure_time[:-1]
# Add each resulting list to the running array totals
all_deps += list(deps)
from_ids = tst_sub_dir.stop_id[:-1].values
all_from_stop_ids += list(from_ids)
to_ids = tst_sub_dir.stop_id[1:].values
all_to_stop_ids += list(to_ids)
all_route_ids.extend([route] * len(deps))
all_trip_ids.extend([trip_id] * len(deps))
# Only return a dataframe if there is contents to populate
# it with
if len(all_deps) > 0:
# Now place results in data frame
edge_departures = pd.DataFrame({
'from_stop_id': all_from_stop_ids,
'to_stop_id': all_to_stop_ids,
'departure_times': all_deps,
'route_id': all_route_ids,
'trip_id': all_trip_ids})
def add_departure_to_edge():
global edge_departures # input
global G # output
for i, row in edge_departures.drop_duplicates(['from_stop_id', 'to_stop_id']).iterrows():
u,v = row.from_stop_id, row.to_stop_id
dep_mask = (edge_departures['from_stop_id'] == u) & (edge_departures['to_stop_id'] == v)
#dep_list = edge_deps[dep_mask].deps.values
dep_list = edge_departures[dep_mask][['route_id', 'departure_times']].sort_values(['departure_times'])
dep_per_route = dep_list.groupby('route_id')['departure_times'].apply(lambda x: x.tolist()).to_dict(into=OrderedDict)
u,v = namify_stop(G.name,u), namify_stop(G.name,v)
#TODO:: find out why you have to do this
if u in G and v in G[u]:
G[u][v][0]['departure_time'] = dep_per_route
#test to make sure all edges is serviced
for x in G.edges(keys=True,data=True):
if 'departure_time' not in x[3]:
print(x)
# In[68]:
#g = add_departure_to_edge()
#g
# In[69]:
## Randomly selects stops to serve as sensors
def randomly_select_sensor_locations():
global G # input
global all_sensors, sensor_count # output
all_stops = set(G.nodes)
sensor_count = round(len(all_stops) * sim.pct_stops_as_sensors / 100)
eligible_stops = list(all_stops - set(all_gateways)) #remove gateways from the list
all_sensors = np.random.choice(eligible_stops, size=sensor_count, replace=False)
## Mark selected nodes as sensors
def assign_sensors_to_nodes():
global all_sensors # input
global G # output
attr = {sensor:True for sensor in all_sensors}
nx.set_node_attributes(G, name='is_sensor', values=attr)
def generate_sensors():
global all_sensors, routes_per_stop # input
global sensor_objects # output
sensor_objects = {}
msg_gen_rate = np.random.randint(low = sim.msg_gen_rate_range[0], high= sim.msg_gen_rate_range[1], size=len(all_sensors)) # 10mins to 12 hours
start_time = np.random.randint(low = sim.msg_gen_rate_range[0], high=sim.msg_gen_rate_range[1], size=len(all_sensors)) # 0 to 1 hour
np.random.shuffle(start_time)
print(sum(msg_gen_rate), sum(start_time))
#exit()
for i,sensor_name in enumerate(all_sensors):
#print(i,sensor_name)
#r = get_routes_per_stop_id(get_stopid(sensor_name))
r = routes_per_stop[get_stopid(sensor_name)]
s = OnRouteSensor(name=sensor_name, routes=r, start_time=start_time[i], msg_gen_rate=msg_gen_rate[i], msg_ttl=None, data_size=None)
sensor_objects[sensor_name]=s
def generate_route_subgraphs():
global G, routes_per_stop, all_routes # input
global route_subgraphs, stops_per_route # output
route_subgraphs = {}
stops_per_route = invert_dict(routes_per_stop)
for r in all_routes:
sub_nodes = [namify_stop(G.name, s) for s in stops_per_route[r]]
# G.remove_nodes_from([n for n in G if n not in set(nodes)])
sub_graph = G.subgraph(sub_nodes).copy()
route_subgraphs[r] = sub_graph
def calculate_delay(routes, sensor, time):
"""
find shortest path from sensor node to a gateway node in the graph, weight is edge cost,
while factoring in duration from current time to next next dept time for that edge.
save gen_time and latency to sensor object
remember departure time, distance is in seconds
while "time", gen_time,start_time is in minutes.
so remember to convert it.
"""
global G, route_subgraphs, gateways_per_route # inputs
global error
import sys
waiting_time = None
shortest_distance, shortest_path = sys.float_info.max, None # to any gateway
for r in routes:
for gateway in gateways_per_route[r]:
g = route_subgraphs[r].copy()
wait_time = None
try:
distance, path = nx.single_source_dijkstra(g, sensor.name, namify_stop(G.name, gateway), weight='length')
except Exception as e:
continue
while len(path) > 1:
'''
make sure then you limit duration to 24 hours. later if time is greater than 24
message is not delivered
'''
# TODO:: error rate too high.. fix it.
#print(path)
departure_list = g[sensor.name][path[1]][0]['departure_time'].get(r, None)
#print(departure_list)
if departure_list == None:
# print("no departure time found")
break
#g.remove_node(path[1])
#continue
else:
wait_time = get_time_to_next_departure(current_time=time, departure_list=departure_list)
break
if wait_time != None:
if distance + wait_time < shortest_distance:
shortest_distance, shortest_path = distance + wait_time, path
waiting_time = wait_time
#break
if waiting_time == None:
shortest_distance = None
error +=1
sensor.gen_times.append(time) # in sec
sensor.msg_latencies.append(shortest_distance) # in sec
sensor.waiting_time.append(waiting_time)
sensor.hops.append(shortest_path)
def store_results():
import json
from collections import defaultdict
final_result = defaultdict(list)
final_result['sim_time'] = sim.duration
# print(sensor_objects.values())
# type(sensor_objects.values()[0])
for s in sensor_objects.values():
data = {
'delivery_rate': None,
'no_of_routes': len(s.routes),
'all_latencies': s.msg_latencies,
'all_waiting_times': s.waiting_time ,
'all_gen_times': s.gen_times,
'all_hops': s.hops,
'delivered_latencies': [],
'delivered_gen_times': [],
'delivered_waiting_times':[],
'delivered_hops':[],
}
for i in range(len(s.msg_latencies)):
if (s.msg_latencies[i] != None) and (s.gen_times[i] + s.msg_latencies[i] < sim.duration * 60):
data['delivered_latencies'].append(s.msg_latencies[i])
data['delivered_gen_times'].append(s.gen_times[i])
data['delivered_waiting_times'].append(s.waiting_time[i])
data['delivered_hops'].append(s.hops[i])
# print(len(s.gen_times))
if (len(s.gen_times) != 0):
data['delivery_rate'] = len(data['delivered_latencies']) / len(s.gen_times)
final_result['ons'].append(data)
with open('results/{0}_data_{1}.txt'.format(sim.network_file, sim.seed), 'w') as outfile:
json.dump(final_result, outfile, indent=True)
print("Results Stored!")
def run_simulation():
global sensor_objects, routes_per_stop
global error
for time in range(int(sim.start/60), sim.duration + 1):
for name, sensor in sensor_objects.items():
if sensor.generate_msg(time):
routes = routes_per_stop[get_stopid(sensor.name)]
# change time to secs
calculate_delay(routes, sensor, time * 60)
print("Simulation Completed! for seed_{0}".format(sim.seed))
print(error)
# In[70]:
def print_stats():
global all_routes, all_gateways, stop_ranks
print("{} Routes, {} Gateways, {} stops".format(len(all_routes), len(all_gateways), len(stop_ranks)))
# # GTFS FUNCTIONS
# In[71]:
for network in sim.network_file_list:
reset_network()
sim.network_file = network
load_network()
load_stop_times()
format_stop_times()
analyze_stops()
get_departure_times_per_edge_per_route()
add_departure_to_edge()
generate_route_subgraphs()
#generate_trip_subgraphs()
#for seed in range(0, sim.no_of_seeds):
for seed in [0]:
reset_sim()
sim.seed = 0
np.random.seed(sim.seed)
random.seed(sim.seed)
#print_stats()
print("Loaded!")
#randomly_select_sensor_locations()
#assign_sensors_to_nodes()
#generate_sensors()
#generate_route_subgraphs()
#run_simulation()
#store_results()
#reset_sim()
# In[72]:
def generate_sensor_scenerios(set_count, min_sensors, max_sensors):
import random
global G, routes_per_stop, all_routes # input
#global sensor_scenerios #output
#TODO:: seed works only if called from within where it is set
#sim.seed = 0
np.random.seed(sim.seed)
random.seed(sim.seed)
sensor_scenerios = []
all_stops = [s for s in set(G.nodes)]
for _ in range(set_count):
sensor_count = random.randint(min_sensors, max_sensors)
scenerio = Scenerio(graph=G,
all_stops= all_stops,
all_routes= all_routes,
routes_per_stop=routes_per_stop,
sensor_count=sensor_count
)
sensor_scenerios.append(scenerio)
return sensor_scenerios
#generate_sensor_scenerios(2, 20, 50)
# In[73]:
def compute_delay(graph, gateways, scenerios):
total_delay = 0
for scenerio in scenerios:
total_delay += scenerio.calculate_penalty_reduction(gateways)
return total_delay / len(scenerios)
# In[74]:
import time
def greedy_im(graph, budget, n_scenerios, min_sensor_count =10, max_sensor_count=30):
"""
Find k nodes with the largest spread (determined by IC) from a igraph graph
using the Greedy Algorithm.
"""
# we will be storing elapsed time and spreads along the way, in a setting where
# we only care about the final solution, we don't need to record these
# additional information
elapsed = []
spreads = []
gateways = []
start_time = time.time()
scenerios = generate_sensor_scenerios(n_scenerios, min_sensor_count, max_sensor_count)
for _ in range(budget):
best_node = -1
best_delay = np.inf
# loop over nodes that are not yet in our final solution
# to find biggest marginal gain
nodes = set(graph.nodes()) - set(gateways)
for node in nodes:
delay = compute_delay(graph, gateways + [node], scenerios)
if delay < best_delay:
best_delay = delay
best_node = node
gateways.append(best_node)
spreads.append(best_delay)
elapse = round(time.time() - start_time, 3)
elapsed.append(elapse)
return gateways, spreads, elapsed
# In[75]:
import heapq
import time
def celf_im(graph, budget, n_scenerios, min_sensor_count=10, max_sensor_count=30, gateways= []):
"""
Find k nodes with the largest spread (determined by IC) from a igraph graph
using the Cost Effective Lazy Forward Algorithm, a.k.a Lazy Greedy Algorithm.
"""
start_time = time.time()
scenerios = generate_sensor_scenerios(n_scenerios, min_sensor_count, max_sensor_count)
# find the first node with greedy algorithm:
# TODO:: python's heap is a min-heap, thus
# TODO:: we negate the spread to get the node
# TODO:: with the maximum spread when popping from the heap
if budget == 0:
return [],[],[],[]
gateways = [namify_stop(graph.name, get_stopid(node)) for node in gateways]
print("started")
gains = []
for node in set(graph.nodes):
delay = compute_delay(graph, gateways + [node], scenerios)
delay_gain = sim.upper_bound_delay - delay
heapq.heappush(gains, (-delay_gain, node, delay))
# we pop the heap to get the node with the best spread,
# TODO:: when storing the spread to negate it again to store the actual spread
delay_gain, node, delay = heapq.heappop(gains)
delay_gain = -delay_gain
gateways.append(node)
delay_gains = [delay_gain]
delays = [delay]
# record the number of times the spread is computed
lookups = [graph.number_of_nodes()]
elapsed = [round(time.time() - start_time, 3)]
for _ in range(budget - 1):
node_lookup = 0
matched = False
while not matched:
node_lookup += 1
# TODO:: here we need to compute the marginal gain of adding the current node
# to the solution, instead of just the gain, i.e. we need to subtract
# the spread without adding the current node
_, current_node, _ = heapq.heappop(gains)
delay = compute_delay(graph, gateways + [current_node], scenerios)
new_delay_gain = (sim.upper_bound_delay - delay)- delay_gain
# check if the previous top node stayed on the top after pushing
# the marginal gain to the heap
heapq.heappush(gains, (-new_delay_gain, current_node, delay))
matched = (gains[0][1] == current_node)
# spread stores the cumulative spread
new_delay_gain, node, delay = heapq.heappop(gains)
delay_gain -= new_delay_gain
gateways.append(node)
delay_gains.append(delay_gain)
delays.append(delay)
lookups.append(node_lookup)
elapse = round(time.time() - start_time, 3)
elapsed.append(elapse)
gateways = [get_stopid(node) for node in gateways]
return gateways, delays, elapsed, lookups # delay_gains
#celf_im(G, budget=3, n_scenerios=1, min_sensor_count =2, max_sensor_count=5, gateways=['778630'])
# In[76]:
def local(stop, routes_per_stop, routes_covered, cost_per_stop):
return len(routes_per_stop[stop] - routes_covered)/cost_per_stop.get(stop, 1)
import sys
def greedy_sc(all_routes, routes_per_stop, budget = sys.maxsize, cost_per_stop = {}, gateways = []):
#global all_stops, routes_per_stop
"""Find a family of subsets that covers the universal set"""
if budget == 0:
return [],0,[]
elements = set(e for s in routes_per_stop.values() for e in s)
# Check the subsets cover the universe
if elements != all_routes:
print("not all routes covered by stops")
return None
routes_covered = {route for stop in gateways for route in routes_per_stop[stop]}
selected_gateways = gateways.copy()
routes_covered_per_iter = []
# Greedily add the subsets with the most uncovered points
while len(selected_gateways) < budget and routes_covered != elements:
selected_stop = max(routes_per_stop,
#key=lambda s: local(s, routes_per_stop, routes_covered, cost_per_stop)
key=lambda s: local(s, routes_per_stop, routes_covered, cost_per_stop)
)
selected_gateways.append(selected_stop)
routes_covered |= routes_per_stop[selected_stop]
routes_covered_per_iter.append(len(routes_covered))
return selected_gateways, len(selected_gateways), routes_covered_per_iter
# In[78]:
import copy
def mcmd(alpha, budget, G, all_routes, routes_per_stop, n_scenerios= 1, min_sensor_count=2, max_sensor_count=10):
sc_budget = int(alpha * budget)
print("sc_budget: ", sc_budget)
sc_gateways, total_cost, routes_covered_per_iter = greedy_sc(all_routes.copy(), routes_per_stop.copy(), budget=sc_budget)
print("sc_gateways: ", sc_gateways)
im_budget = budget - len(sc_gateways)
print("im_budget: ", im_budget)
im_gateways, delays, elapsed, lookups = celf_im(G, im_budget, n_scenerios, min_sensor_count, max_sensor_count, gateways=sc_gateways.copy())
print("im_gateways: ", im_gateways)
result = {
"sc_budget": sc_budget,
"sc_selections": total_cost,
"sc_gateways": sc_gateways,
"routes_covered_per_iter":routes_covered_per_iter,
"im_gateways": im_gateways,
"delays": delays,
"elapsed": elapsed,
"lookups": lookups
}
return result
#mcmd(0.75, 4, G, all_routes, routes_per_stop)
def mcmd2(alpha, budget, G, all_routes, routes_per_stop, n_scenerios= 1, min_sensor_count=2, max_sensor_count=10):
im_g = ['778638', '778671', '778806', '778650', '778860']
beta = 1 - alpha
im_budget = int(beta * budget)
print("im_budget: ", im_budget)
im_gateways = im_g[:im_budget]
print("im_gateways: ", im_gateways)
sc_budget = budget - len(im_gateways)
print("sc_budget: ", sc_budget)
sc_gateways, total_cost, routes_covered_per_iter = greedy_sc(all_routes.copy(), routes_per_stop.copy(), budget=sc_budget, gateways=im_gateways.copy())
print("sc_gateways: ", sc_gateways)
im_gateways2, delays2, elapsed2, lookups2 = celf_im(G, im_budget, n_scenerios, min_sensor_count, max_sensor_count, gateways=sc_gateways.copy())
print("im_gateways2: ", im_gateways2)
result = {
"im_gateways": im_gateways,
"delays": delays,
"elapsed": elapsed,
"lookups": lookups,
"sc_budget": sc_budget,
"sc_selections": total_cost,
"sc_gateways": sc_gateways,
"routes_covered_per_iter":routes_covered_per_iter,
"im_gateways2": im_gateways2,
"delays2": delays2,
"elapsed2": elapsed2,
"lookups2": lookups2
}
return result
# In[79]:
results = {}
for alpha in np.arange(0.2, 1.01, 0.2):
print("alpha: ", alpha)
results[alpha] = mcmd2(
alpha=alpha, budget=5, G=G, all_routes=all_routes,
routes_per_stop=routes_per_stop, n_scenerios= 5,
min_sensor_count=30, max_sensor_count=40
)
# In[ ]:
import json
print(results)
with open('mcmd2_result_10_cht.txt', 'w') as outfile:
json.dump(results, outfile)