-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Clara Martins <LeKinaSa@users.noreply.github.com>
- Loading branch information
1 parent
0478fdc
commit 7a87ef0
Showing
1 changed file
with
41 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,47 @@ | ||
import time | ||
from typing import Tuple, List | ||
import pandas as pd | ||
from typing import Tuple | ||
|
||
from or_tools_solution import cvrp | ||
|
||
class Solver: | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str, **args) -> Tuple[float, List[List[int]], float]: | ||
"""Returns the time it took to solve (in seconds), list of paths, total travelled distance""" | ||
raise Exception("Not implemented") | ||
|
||
|
||
class OrToolsSolver(Solver): | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[float, List[List[int]], float]: | ||
start_time = time.time() | ||
(data, manager, routing, solution) = cvrp(distance_matrix_path, cvrp_problem_path, 1) | ||
end_time = time.time() | ||
total_distance = 0 | ||
routes = [] | ||
for vehicle_id in range(len(data['distance_matrix'])): | ||
route = [] | ||
index = routing.Start(vehicle_id) | ||
while not routing.IsEnd(index): | ||
node_index = manager.IndexToNode(index) | ||
route.append(node_index) | ||
previous_index = index | ||
index = solution.Value(routing.NextVar(index)) | ||
total_distance += routing.GetArcCostForVehicle( | ||
previous_index, index, vehicle_id) / 100 | ||
routes.append(route) | ||
return (end_time - start_time, routes, total_distance) | ||
|
||
class SimulatedAnnealing(Solver): | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[float, List[List[int]], float]: | ||
pass | ||
|
||
class Greedy(Solver): | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[float, List[List[int]], float]: | ||
pass | ||
|
||
class TabuSearch(Solver): | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[float, List[List[int]], float]: | ||
pass | ||
|
||
class AntColony(Solver): | ||
def solve(distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[float, List[List[int]], float]: | ||
pass | ||
def solve(name:str, distance_matrix_path: str, cvrp_problem_path: str) -> Tuple[str, int, float, int, float, int]: | ||
start_time = time.time() | ||
(data, manager, routing, solution) = cvrp(distance_matrix_path, cvrp_problem_path, 3 * 60) | ||
end_time = time.time() | ||
total_distance = 0 | ||
total_load = 0 | ||
routes = [] | ||
for vehicle_id in range(len(data['distance_matrix'])): | ||
route = [] | ||
index = routing.Start(vehicle_id) | ||
while not routing.IsEnd(index): | ||
node_index = manager.IndexToNode(index) | ||
route.append(node_index) | ||
previous_index = index | ||
index = solution.Value(routing.NextVar(index)) | ||
total_distance += routing.GetArcCostForVehicle( | ||
previous_index, index, vehicle_id) / 100 | ||
total_load += data['demands'][node_index] | ||
routes.append(route) | ||
return (name, len(data['deliveries']), total_distance, len(routes), total_load / len(routes), (end_time - start_time) * 10**6) | ||
|
||
if __name__=="__main__": | ||
pass | ||
files = ['0-pa-61', '0-pa-25', '0-pa-34', '0-df-12', '0-df-15', '0-df-44', '2-rj-17'] | ||
df = pd.DataFrame(columns=['name','num_deliveries','solution_length','num_vehicles','average_load','time_us']) | ||
for file in files: | ||
file_details = file.split('-') | ||
distance_matrix_path = f'data/distances/{file}.txt' | ||
cvrp_problem_path = f'data/train/{file_details[1]}-{file_details[0]}/cvrp-{file}.json' | ||
result = solve(file, distance_matrix_path, cvrp_problem_path) | ||
df.append(result) | ||
df.to_csv('data/cvrp-benchmarks/cp_analysis.csv') | ||
|
||
""" | ||
./cvrp --osm ../data/graphs/pa.xml --cvrp ../data/train/pa-0/cvrp-0-pa-61.json --dm ../data/distances/0-pa-61.txt | ||
./cvrp --osm ../data/graphs/pa.xml --cvrp ../data/train/pa-0/cvrp-0-pa-25.json --dm ../data/distances/0-pa-25.txt | ||
./cvrp --osm ../data/graphs/pa.xml --cvrp ../data/train/pa-0/cvrp-0-pa-34.json --dm ../data/distances/0-pa-34.txt | ||
./cvrp --osm ../data/graphs/df.xml --cvrp ../data/train/df-0/cvrp-0-df-12.json --dm ../data/distances/0-df-12.txt | ||
./cvrp --osm ../data/graphs/df.xml --cvrp ../data/train/df-0/cvrp-0-df-15.json --dm ../data/distances/0-df-15.txt | ||
./cvrp --osm ../data/graphs/df.xml --cvrp ../data/train/df-0/cvrp-0-df-44.json --dm ../data/distances/0-df-44.txt | ||
./cvrp --osm ../data/graphs/rj.xml --cvrp ../data/train/rj-2/cvrp-2-rj-17.json --dm ../data/distances/2-rj-17.txt | ||
""" |