diff --git a/.DS_Store b/.DS_Store index 5e93b38..9624cc1 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/README.md b/README.md index 61a8c55..f64e2b5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -# Yang_Gang +# snap-that-cat ## [National Action Council for Minorities in Engineering(NACME)](https://www.nacme.org) Google Applied Machine Learning Intensive (AMLI) at the `University_of_Kentucky` ## Usage instructions - -1. Fork this repo -2. Change directories into your project -3. On the command line, type `pip3 install requirements.txt` -4. .... +1. Import the imgkit package (https://pypi.org/project/imgkit/) +2. Import the chromedriver package (https://stackoverflow.com/questions/42478591/python-selenium-chrome-webdriver) +3. Install networkx +4. Install peartree +5. Install osmnx +6. Install numpy +7. Install random +8. Install folium==0.11.0 +9. Install imgkit==1.0.2 +10. Install selenium==3.141.0 diff --git a/main_sim.ipynb b/main_sim.ipynb new file mode 100644 index 0000000..51ff15d --- /dev/null +++ b/main_sim.ipynb @@ -0,0 +1,19414 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from collections import defaultdict, OrderedDict, Counter\n", + "import networkx as nx\n", + "import numpy as np\n", + "import peartree as pt\n", + "import random\n", + "\n", + "############### MY MODULES ###############\n", + "import sim\n", + "from sensor import *\n", + "from scenerio import *\n", + "from dsp_memo import DspMemo" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "############ GLOBAL VARIABLES #############\n", + "\n", + "def reset_network():\n", + " global_variables = {\n", + " 'time_table': None,\n", + " 'feed': None,\n", + " 'G': None,\n", + " 'stop_times': None,\n", + " 'routes': None,\n", + " 'trips': None,\n", + " 'all_routes': None,\n", + " 'all_trips': None,\n", + "\n", + " 'stop_times_dict': None,\n", + " 'trips_per_stop': None,\n", + " 'routes_per_stop': None,\n", + " 'stop_ranks': None,\n", + " 'route_subgraphs': None,\n", + " 'edge_departures': None,\n", + " 'trip_subgraphs': None,\n", + " 'stops_per_trip': None,\n", + " 'dsp_memo': None\n", + " }\n", + " \n", + " globals().update(global_variables)\n", + " \n", + "def reset_sim():\n", + " global_variables = {\n", + " 'error': 0,\n", + " 'routes_per_gateway': None,\n", + " 'gateways_per_route': None,\n", + " 'all_gateways': None,\n", + " 'all_sensors': None,\n", + " 'sensor_count': None,\n", + " 'sensor_objects': None,\n", + " }\n", + "\n", + " globals().update(global_variables)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "################## HELPER FUNCTIONS ##################\n", + "\n", + "def get_stopid(node_name):\n", + " return node_name.split('_')[-1]\n", + "\n", + "\n", + "def namify_stop(g_name,stop_id):\n", + " return \"{0}_{1}\".format(g_name,stop_id)\n", + "\n", + "\n", + "def invert_dict(d):\n", + " inverted_d = defaultdict(set)\n", + " for k in d.keys():\n", + " for v in d[k]:\n", + " inverted_d[v].add(k)\n", + " return inverted_d\n", + "\n", + "# I don't think this is useful\n", + "def get_routes_per_stop_id(stop_id):\n", + " for stop_id in time_table.stop_id.unique():\n", + " routes = time_table[time_table.stop_id == stop_id].route_id.unique()\n", + " return set(routes)\n", + "\n", + "\n", + "def get_time_to_next_departure(current_time, departure_list):\n", + " try:\n", + " next_departure = min(v for v in departure_list if v >= current_time)\n", + " wait_time = next_departure - current_time\n", + " except:\n", + " wait_time = None\n", + "\n", + " return wait_time" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def load_network():\n", + " global feed,G,dsp_memo\n", + "\n", + " feed = pt.get_representative_feed('data/gtfs/' + sim.network_file)\n", + " G = pt.load_feed_as_graph(feed, sim.start, sim.end, interpolate_times=True)\n", + " dsp_memo = DspMemo()\n", + " \n", + "def load_stop_times():\n", + " global stop_times, routes, trips, time_table\n", + "\n", + "\n", + " stop_times = feed.stop_times\n", + " routes = feed.routes\n", + " trips = feed.trips\n", + "\n", + " stoptimes_trips = stop_times.merge(trips, left_on='trip_id', right_on='trip_id')\n", + " stoptimes_trips_routes = stoptimes_trips.merge(routes, left_on='route_id', right_on='route_id')\n", + "\n", + " columns = ['route_id',\n", + " 'service_id',\n", + " 'trip_id',\n", + " #'trip_headsign',\n", + " 'direction_id',\n", + " #'block_id',\n", + " #'shape_id',\n", + " #'route_short_name',\n", + " #'route_long_name',\n", + " 'route_type',\n", + " 'arrival_time',\n", + " 'departure_time',\n", + " 'stop_id',\n", + " 'stop_sequence'\n", + " ]\n", + "\n", + " time_table = stoptimes_trips_routes[columns]\n", + "\n", + "def format_stop_times():\n", + " global time_table, all_trips, all_routes\n", + "\n", + " #time_table = pt.summarizer._trim_stop_times_by_timeframe(time_table, sim.start, sim.end)\n", + "\n", + " time_table = time_table[~time_table['route_id'].isnull()]\n", + "\n", + " time_table = pt.summarizer._linearly_interpolate_infill_times(\n", + " time_table,\n", + " use_multiprocessing=False)\n", + "\n", + " if 'direction_id' in time_table:\n", + " # If there is such column then check if it contains NaN\n", + " has_nan = time_table['direction_id'].isnull()\n", + " if sum(has_nan) > 0:\n", + " # If it has no full coverage in direction_id, drop the column\n", + " time_table.drop('direction_id', axis=1, inplace=True)\n", + "\n", + " # all_routes = set(feed.routes.route_id.values)\n", + " all_routes = set(time_table.route_id.unique())\n", + " all_trips = set(time_table.trip_id.unique())\n", + "\n", + "\n", + "\n", + "def analyze_stops():\n", + " global stop_times_dict, trips_per_stop, routes_per_stop, stop_ranks\n", + " stop_times_dict = defaultdict(dict)\n", + " trips_per_stop = defaultdict(set)\n", + " routes_per_stop = defaultdict(set)\n", + " routes_per_stop = defaultdict(set)\n", + " stop_ranks = OrderedDict()\n", + "\n", + " for i,row in time_table.iterrows():\n", + " trips_per_stop[row.stop_id].add(row.trip_id)\n", + " routes_per_stop[row.stop_id].add(row.route_id)\n", + "\n", + " d = {}\n", + " for k,v in routes_per_stop.items():\n", + " d[k] = len(v)\n", + "\n", + " for k in sorted(d, key=d.get, reverse=True):\n", + " stop_ranks[k] = d[k]\n", + " #stop_ranks = {k:d[k] for k in sorted(d, key=d.get, reverse=True)} \n", + " \n", + "def assign_gateways_to_nodes():\n", + " global all_gateways #input\n", + " global G #output\n", + "\n", + " attr = {gw:True for gw in all_gateways}\n", + " nx.set_node_attributes(G, name='is_gateway', values=attr)\n", + "\n", + " return G\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def load_gateways(gateways):\n", + " # minimal based on ranks\n", + " global routes_per_stop #inputs\n", + " global routes_per_gateway, gateways_per_route, all_gateways #outputs\n", + "\n", + "\n", + " routes_per_gateway = defaultdict(set)\n", + " \n", + " for stop_id in gateways:\n", + " routes_per_gateway[stop_id].update(routes_per_stop[stop_id])\n", + "\n", + "\n", + " #routes_per_gateway = select_optimal_gateways(all_routes, routes_per_stop, stop_ranks)\n", + " gateways_per_route = invert_dict(routes_per_gateway)\n", + " all_gateways = set(namify_stop(G.name, x) for x in routes_per_gateway.keys())\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "code_folding": [ + 1, + 60 + ] + }, + "outputs": [], + "source": [ + "#### Add departure times of source node to edges\n", + "def get_departure_times_per_edge_per_route():\n", + " import pandas as pd\n", + "\n", + " global time_table # input\n", + " global edge_departures # output\n", + "\n", + " has_dir_col = 'direction_id' in time_table.columns.values\n", + "\n", + " all_deps = []\n", + " all_route_ids = []\n", + " all_trip_ids = []\n", + " all_from_stop_ids = []\n", + " all_to_stop_ids = []\n", + "\n", + " for trip_id in time_table.trip_id.unique():\n", + "\n", + " tst_sub = time_table[time_table.trip_id == trip_id]\n", + " route = tst_sub.route_id.values[0]\n", + "\n", + " # Just in case both directions are under the same trip id\n", + " for direction in [0, 1]:\n", + " # Support situations where direction_id is absent from the\n", + " # GTFS data. In such situations, include all trip and stop\n", + " # time data, instead of trying to split on that column\n", + " # (since it would not exist).\n", + " if has_dir_col:\n", + " dir_mask = (tst_sub.direction_id == direction)\n", + " tst_sub_dir = tst_sub[dir_mask]\n", + " else:\n", + " tst_sub_dir = tst_sub.copy()\n", + "\n", + " tst_sub_dir = tst_sub_dir.sort_values('stop_sequence')\n", + " \n", + " deps = tst_sub_dir.departure_time[:-1]\n", + "\n", + " # Add each resulting list to the running array totals\n", + " all_deps += list(deps)\n", + "\n", + " from_ids = tst_sub_dir.stop_id[:-1].values\n", + " all_from_stop_ids += list(from_ids)\n", + "\n", + " to_ids = tst_sub_dir.stop_id[1:].values\n", + " all_to_stop_ids += list(to_ids)\n", + "\n", + " all_route_ids.extend([route] * len(deps))\n", + " all_trip_ids.extend([trip_id] * len(deps))\n", + "\n", + " # Only return a dataframe if there is contents to populate\n", + " # it with\n", + " if len(all_deps) > 0:\n", + " # Now place results in data frame\n", + " edge_departures = pd.DataFrame({\n", + " 'from_stop_id': all_from_stop_ids,\n", + " 'to_stop_id': all_to_stop_ids,\n", + " 'departure_times': all_deps,\n", + " 'route_id': all_route_ids,\n", + " 'trip_id': all_trip_ids})\n", + "\n", + " \n", + "def add_departure_to_edge():\n", + " global edge_departures # input\n", + " global G # output\n", + "\n", + " for i, row in edge_departures.drop_duplicates(['from_stop_id', 'to_stop_id']).iterrows():\n", + " u,v = row.from_stop_id, row.to_stop_id\n", + "\n", + " dep_mask = (edge_departures['from_stop_id'] == u) & (edge_departures['to_stop_id'] == v)\n", + " #dep_list = edge_deps[dep_mask].deps.values\n", + " dep_list = edge_departures[dep_mask][['route_id', 'departure_times']].sort_values(['departure_times'])\n", + "\n", + " dep_per_route = dep_list.groupby('route_id')['departure_times'].apply(lambda x: x.tolist()).to_dict(into=OrderedDict)\n", + "\n", + " u,v = namify_stop(G.name,u), namify_stop(G.name,v)\n", + "\n", + " #TODO:: find out why you have to do this\n", + " if u in G and v in G[u]:\n", + " G[u][v][0]['departure_time'] = dep_per_route\n", + "\n", + "\n", + " #test to make sure all edges is serviced\n", + " for x in G.edges(keys=True,data=True):\n", + " if 'departure_time' not in x[3]:\n", + " print(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def store_results(algorithm=\"None\"):\n", + " import json\n", + " from collections import defaultdict\n", + " final_result = defaultdict(list)\n", + " \n", + " global total_delay, delivered_gen, total_gen\n", + " \n", + " final_result['sim_time'] = sim.duration\n", + " final_result[\"total_delay\"] = total_delay\n", + " final_result[\"delivered_gen\"] = delivered_gen\n", + " final_result[\"total_gen\"] = total_gen\n", + "\n", + " # print(sensor_objects.values())\n", + " # type(sensor_objects.values()[0])\n", + "\n", + " for s in sensor_objects.values():\n", + "\n", + " data = {\n", + " 'delivery_rate': None,\n", + " 'no_of_routes': len(s.routes),\n", + " 'all_latencies': s.msg_latencies,\n", + " 'all_waiting_times': s.waiting_time ,\n", + " 'all_gen_times': s.gen_times,\n", + " 'all_hops': s.hops,\n", + " 'delivered_latencies': [],\n", + " 'delivered_gen_times': [],\n", + " 'delivered_waiting_times':[],\n", + " 'delivered_hops':[],\n", + " }\n", + "\n", + " for i in range(len(s.msg_latencies)):\n", + " if (s.msg_latencies[i] != None) and (s.gen_times[i] + s.msg_latencies[i] < sim.duration * 60):\n", + " data['delivered_latencies'].append(s.msg_latencies[i])\n", + " data['delivered_gen_times'].append(s.gen_times[i])\n", + " data['delivered_waiting_times'].append(s.waiting_time[i])\n", + " data['delivered_hops'].append(s.hops[i])\n", + "\n", + " # print(len(s.gen_times))\n", + "\n", + " if (len(s.gen_times) != 0):\n", + " data['delivery_rate'] = len(data['delivered_latencies']) / len(data['all_latencies'])\n", + " else:\n", + " data['delivery_rate'] = 0\n", + "\n", + " final_result['ons'].append(data)\n", + " \n", + "\n", + " #print(\"total latency: \", sum(final_result['delivered_latencies']))\n", + " with open('results/{}_{}_result_{}.txt'.format(sim.network_file, algorithm, sim.seed), 'w') as outfile:\n", + " json.dump(final_result, outfile, indent=True)\n", + "\n", + " print(\"Results Stored!\")\n", + " return final_result" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def print_stats():\n", + " global all_routes, all_gateways, stop_ranks\n", + " print(\"{} Routes, {} Gateways, {} stops\".format(len(all_routes), len(all_gateways), len(stop_ranks)))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "code_folding": [] + }, + "outputs": [], + "source": [ + "## Randomly selects stops to serve as sensors\n", + "def randomly_select_sensor_locations():\n", + " global G # input\n", + " global all_sensors, sensor_count # output\n", + "\n", + "\n", + " all_stops = set(G.nodes)\n", + " sensor_count = round(len(all_stops) * sim.pct_stops_as_sensors / 100)\n", + "\n", + " #eligible_stops = list(all_stops - set(all_gateways)) #remove gateways from the list\n", + " eligible_stops = list(all_stops)\n", + " all_sensors = np.random.choice(eligible_stops, size=sensor_count, replace=False)\n", + "\n", + "\n", + "## Mark selected nodes as sensors\n", + "def assign_sensors_to_nodes():\n", + " global all_sensors # input\n", + " global G # output\n", + "\n", + " attr = {sensor:True for sensor in all_sensors}\n", + "\n", + " nx.set_node_attributes(G, name='is_sensor', values=attr)\n", + "\n", + "\n", + "def generate_sensors():\n", + " global all_sensors, routes_per_stop # input\n", + " global sensor_objects # output\n", + " \n", + " \n", + " np.random.seed(sim.seed)\n", + " random.seed(sim.seed)\n", + "\n", + " sensor_objects = {}\n", + "\n", + " 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\n", + " 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\n", + " np.random.shuffle(start_time)\n", + "\n", + " print(sum(msg_gen_rate), sum(start_time))\n", + "\n", + " #exit()\n", + "\n", + "\n", + " for i,sensor_name in enumerate(all_sensors):\n", + " #print(i,sensor_name)\n", + " #r = get_routes_per_stop_id(get_stopid(sensor_name))\n", + " r = routes_per_stop[get_stopid(sensor_name)]\n", + "\n", + " 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)\n", + " sensor_objects[sensor_name]=s\n", + "\n", + "\n", + "def generate_route_subgraphs():\n", + " global G, routes_per_stop, all_routes # input\n", + " global route_subgraphs, stops_per_route # output\n", + "\n", + " route_subgraphs = {}\n", + " stops_per_route = invert_dict(routes_per_stop)\n", + "\n", + " for r in all_routes:\n", + " sub_nodes = [namify_stop(G.name, s) for s in stops_per_route[r]]\n", + " # G.remove_nodes_from([n for n in G if n not in set(nodes)])\n", + " sub_graph = G.subgraph(sub_nodes).copy()\n", + " route_subgraphs[r] = sub_graph\n", + "\n", + "\n", + "\n", + "def calculate_delay(routes, sensor, time):\n", + " \"\"\"\n", + " find shortest path from sensor node to a gateway node in the graph, weight is edge cost,\n", + " while factoring in duration from current time to next next dept time for that edge.\n", + "\n", + " save gen_time and latency to sensor object\n", + "\n", + " remember departure time, distance is in seconds\n", + " while \"time\", gen_time,start_time is in minutes.\n", + " so remember to convert it.\n", + " \"\"\"\n", + " global G, route_subgraphs, gateways_per_route, dsp_memo # inputs\n", + "\n", + " global error\n", + "\n", + " import sys\n", + " waiting_time = None\n", + " shortest_distance, shortest_path = sys.float_info.max, None # to any gateway\n", + "\n", + " gateway_exists = False\n", + " paths = 0\n", + "\n", + " for r in routes:\n", + " for gateway in gateways_per_route[r]:\n", + " \n", + " gateway_exists = True\n", + "\n", + " g = route_subgraphs[r].copy()\n", + "\n", + " wait_time = None\n", + "\n", + " try:\n", + " distance, path = dsp_memo.getDsp(g, r, sensor.name, namify_stop(G.name, gateway))\n", + " #distance, path = nx.single_source_dijkstra(g, sensor.name, namify_stop(G.name, gateway), weight='length')\n", + " except Exception as e:\n", + " continue\n", + " \n", + "\n", + " while len(path) > 1:\n", + " '''\n", + " make sure then you limit duration to 24 hours. later if time is greater than 24\n", + " message is not delivered\n", + " '''\n", + " # TODO:: error rate too high.. fix it.\n", + " paths += 1\n", + " #print(path)\n", + " departure_list = g[sensor.name][path[1]][0]['departure_time'].get(r, None)\n", + "\n", + " #print(departure_list)\n", + " if departure_list == None:\n", + " # print(\"no departure time found\")\n", + " break\n", + " #g.remove_node(path[1])\n", + " #continue\n", + "\n", + " else:\n", + " wait_time = get_time_to_next_departure(current_time=time, departure_list=departure_list)\n", + " break\n", + "\n", + "\n", + " if wait_time != None:\n", + "\n", + " if distance + wait_time < shortest_distance:\n", + " shortest_distance, shortest_path = distance + wait_time, path\n", + " waiting_time = wait_time\n", + " #break\n", + " \n", + " \n", + "\n", + " if waiting_time == None:\n", + " shortest_distance = None\n", + " \n", + " #If a gateway does exist, but no delivery due to no cycle on the route\n", + " # path==0 leads to indegree better performance than\n", + " if gateway_exists== True and paths==0:\n", + " error +=1\n", + " return\n", + "\n", + " \n", + " sensor.gen_times.append(time) # in sec\n", + " sensor.msg_latencies.append(shortest_distance) # in sec\n", + " sensor.waiting_time.append(waiting_time)\n", + " sensor.hops.append(shortest_path)\n", + " \n", + " return waiting_time\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def run_simulation():\n", + " global sensor_objects, routes_per_stop\n", + " global error, total_delay, delivered_gen, total_gen\n", + "\n", + " total_delay = 0\n", + " total_gen = 0\n", + " delivered_gen =0\n", + " for time in range(int(sim.start/60), sim.duration + 1):\n", + " for name, sensor in sensor_objects.items():\n", + " if sensor.generate_msg(time):\n", + " routes = routes_per_stop[get_stopid(sensor.name)]\n", + " # change time to secs\n", + " delay = calculate_delay(routes, sensor, time * 60)\n", + " \n", + " total_delay += delay if delay != None else sim.upper_bound_delay\n", + " delivered_gen += 1 if delay !=None else 0\n", + " total_gen += 1\n", + "\n", + " print(\"\\t\\t\\t\\t\\t total: \", total_delay, delivered_gen, total_gen)\n", + " print(\"Simulation Completed! for seed_{0}\".format(sim.seed))\n", + " print(\"error: \" + str(error))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# GTFS FUNCTIONS" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "starting simulation for louisville.zip\n", + "79436 79774\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "79436 79774\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8829194400 0 94329\n", + "Simulation Completed! for seed_0\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "77651 79615\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7866612000 0 84045\n", + "Simulation Completed! for seed_1\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "79807 78284\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7596388800 0 81158\n", + "Simulation Completed! for seed_2\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "76849 79973\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080956000 0 86335\n", + "Simulation Completed! for seed_3\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78725 78454\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8285752800 0 88523\n", + "Simulation Completed! for seed_4\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78292 77465\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8439818400 0 90169\n", + "Simulation Completed! for seed_5\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "78451 77331\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7946733600 0 84901\n", + "Simulation Completed! for seed_6\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79322 78470\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8229967200 0 87927\n", + "Simulation Completed! for seed_7\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "79890 78553\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7398612000 0 79045\n", + "Simulation Completed! for seed_8\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78406 79504\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7387005600 0 78921\n", + "Simulation Completed! for seed_9\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "78950 77711\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8160235200 0 87182\n", + "Simulation Completed! for seed_10\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "79484 78324\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7777036800 0 83088\n", + "Simulation Completed! for seed_11\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "80432 76886\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6956164800 0 74318\n", + "Simulation Completed! for seed_12\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "77627 79152\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7814664000 0 83490\n", + "Simulation Completed! for seed_13\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "78522 81472\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8234834400 0 87979\n", + "Simulation Completed! for seed_14\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "79442 78951\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7420420800 0 79278\n", + "Simulation Completed! for seed_15\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 1 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "80695 77601\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7615296000 0 81360\n", + "Simulation Completed! for seed_16\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "76005 78404\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8361288000 0 89330\n", + "Simulation Completed! for seed_17\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 15 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "82707 78095\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6917227200 0 73902\n", + "Simulation Completed! for seed_18\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80850 76939\n", + "46 Routes, 15 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7933161600 0 84756\n", + "Simulation Completed! for seed_19\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "80686 78281\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7843305600 0 83796\n", + "Simulation Completed! for seed_20\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 15 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79735 78309\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8011036800 0 85588\n", + "Simulation Completed! for seed_21\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 15 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "79669 81218\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7741094400 0 82704\n", + "Simulation Completed! for seed_22\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78787 79657\n", + "46 Routes, 15 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8080394400 0 86329\n", + "Simulation Completed! for seed_23\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "78117 77395\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210217600 0 87716\n", + "Simulation Completed! for seed_24\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "77837 79568\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9254512800 0 98873\n", + "Simulation Completed! for seed_25\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 14 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "76960 79593\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8240169600 0 88036\n", + "Simulation Completed! for seed_26\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 14 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "78530 76578\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8119893600 0 86751\n", + "Simulation Completed! for seed_27\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "77964 80269\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7957029600 0 85011\n", + "Simulation Completed! for seed_28\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 14 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "81108 80714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7499138400 0 80119\n", + "Simulation Completed! for seed_29\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 14 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "77608 80016\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6732460800 0 71928\n", + "Simulation Completed! for seed_30\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "78548 79758\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8281353600 0 88476\n", + "Simulation Completed! for seed_31\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "79502 78315\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8737372800 0 93348\n", + "Simulation Completed! for seed_32\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80301 80460\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7177341600 0 76681\n", + "Simulation Completed! for seed_33\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "80613 76833\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7497360000 0 80100\n", + "Simulation Completed! for seed_34\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "78371 79109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7884489600 0 84236\n", + "Simulation Completed! for seed_35\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80331 83011\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7949728800 0 84933\n", + "Simulation Completed! for seed_36\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80810 78922\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7686057600 0 82116\n", + "Simulation Completed! for seed_37\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "80103 79863\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8367652800 0 89398\n", + "Simulation Completed! for seed_38\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "81113 80643\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7262704800 0 77593\n", + "Simulation Completed! for seed_39\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "79568 79819\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7581974400 0 81004\n", + "Simulation Completed! for seed_40\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 13 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "80195 79350\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8127849600 0 86836\n", + "Simulation Completed! for seed_41\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "78598 78304\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78598 78304\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9204811200 0 98342\n", + "Simulation Completed! for seed_42\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 12 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78405 78569\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8210872800 0 87723\n", + "Simulation Completed! for seed_43\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "78949 77907\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8401723200 0 89762\n", + "Simulation Completed! for seed_44\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 12 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "79575 80549\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6660201600 0 71156\n", + "Simulation Completed! for seed_45\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 12 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "77992 80865\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7961241600 0 85056\n", + "Simulation Completed! for seed_46\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 12 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "80570 79720\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7769361600 0 83006\n", + "Simulation Completed! for seed_47\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "79054 75743\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7935876000 0 84785\n", + "Simulation Completed! for seed_48\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "76357 78213\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9030902400 0 96484\n", + "Simulation Completed! for seed_49\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 11 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "77939 80297\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8262072000 0 88270\n", + "Simulation Completed! for seed_50\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "80882 78548\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7791732000 0 83245\n", + "Simulation Completed! for seed_51\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79628 81523\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 6971702400 0 74484\n", + "Simulation Completed! for seed_52\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 10 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "79031 79019\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7705713600 0 82326\n", + "Simulation Completed! for seed_53\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "75885 80823\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8474450400 0 90539\n", + "Simulation Completed! for seed_54\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "78235 81300\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7721625600 0 82496\n", + "Simulation Completed! for seed_55\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77236 79169\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7871292000 0 84095\n", + "Simulation Completed! for seed_56\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 8 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "77671 79861\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8703489600 0 92986\n", + "Simulation Completed! for seed_57\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 8 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "79009 79714\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7838532000 0 83745\n", + "Simulation Completed! for seed_58\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78201 78930\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7793604000 0 83265\n", + "Simulation Completed! for seed_59\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "78057 78311\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8085261600 0 86381\n", + "Simulation Completed! for seed_60\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 7 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "80224 78508\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7609867200 0 81302\n", + "Simulation Completed! for seed_61\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 7 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "76997 81191\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9068716800 0 96888\n", + "Simulation Completed! for seed_62\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "79004 78120\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7459264800 0 79693\n", + "Simulation Completed! for seed_63\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "77256 79559\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 9160538400 0 97869\n", + "Simulation Completed! for seed_64\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 6 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "79270 80109\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8250933600 0 88151\n", + "Simulation Completed! for seed_65\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 6 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "80441 76581\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 7663687200 0 81877\n", + "Simulation Completed! for seed_66\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 6 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 6 Gateways, 4391 stops\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 7 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 8 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 9 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 10 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 11 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 12 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 13 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 14 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "79494 78062\n", + "46 Routes, 15 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8005608000 0 85530\n", + "Simulation Completed! for seed_67\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 1 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8131500000 0 86875\n", + "Simulation Completed! for seed_68\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 2 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8131500000 0 86875\n", + "Simulation Completed! for seed_68\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 3 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8131500000 0 86875\n", + "Simulation Completed! for seed_68\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 4 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8131500000 0 86875\n", + "Simulation Completed! for seed_68\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 5 Gateways, 4391 stops\n", + "\t\t\t\t\t total: 8131500000 0 86875\n", + "Simulation Completed! for seed_68\n", + "error: 0\n", + "Results Stored!\n", + "78440 78626\n", + "46 Routes, 6 Gateways, 4391 stops\n" + ] + } + ], + "source": [ + "for network in sim.network_file_list:\n", + " print(\"starting simulation for \"+ network)\n", + " reset_network()\n", + " sim.network_file = network\n", + "\n", + " load_network()\n", + " load_stop_times()\n", + " format_stop_times()\n", + " analyze_stops()\n", + " get_departure_times_per_edge_per_route()\n", + " add_departure_to_edge()\n", + " generate_route_subgraphs()\n", + " \n", + " for seed in range(0, sim.no_of_seeds):\n", + " reset_sim()\n", + "\n", + " sim.seed = seed\n", + " np.random.seed(sim.seed)\n", + " random.seed(sim.seed)\n", + "\n", + " randomly_select_sensor_locations()\n", + " #assign_sensors_to_nodes()\n", + " #generate_sensors()\n", + " for algo in [\"celf\", \"in_degree\", \"betweenness\"]:\n", + " for index in range(len(sim.cht_gateways[\"celf\"])):\n", + " generate_sensors()\n", + " load_gateways(sim.cht_gateways[algo][:index+1])\n", + " print_stats()\n", + " generate_route_subgraphs()\n", + " run_simulation()\n", + " t = store_results(algo + \"_budget\" + str(index+1))\n", + "\n", + " # total = 0\n", + " # n = 0\n", + " # for v in t['ons']:\n", + " # total += v['delivery_rate']\n", + " # n += 1\n", + "\n", + " # total/n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "print([get_stopid(x) for x in sim.cht_gateways[\"celf\"]])" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.9905820249369358" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "0.9905820249369358" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.13" + }, + "pycharm": { + "stem_cell": { + "cell_type": "raw", + "metadata": { + "collapsed": false + }, + "source": [] + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}