2019-10-31 15:04:38 +00:00
|
|
|
from src import *
|
2019-10-31 17:58:06 +00:00
|
|
|
import pandas as pd
|
|
|
|
from time import time as t
|
2019-10-23 19:07:20 +00:00
|
|
|
|
2019-10-31 18:05:53 +00:00
|
|
|
|
2019-10-23 19:19:38 +00:00
|
|
|
def run(show_plots=False):
|
2019-10-31 15:08:29 +00:00
|
|
|
# names = [name_ for name_ in os.listdir("./problems") if "tsp" in name_]
|
2019-10-31 17:58:06 +00:00
|
|
|
names = ["eil76.tsp"]
|
|
|
|
methods = ["random", "nearest_neighbors", "best_nn"]
|
|
|
|
results = []
|
|
|
|
index = []
|
2019-10-23 19:07:20 +00:00
|
|
|
for name in names:
|
2019-10-23 19:19:38 +00:00
|
|
|
print("\n\n#############################")
|
2019-10-23 19:07:20 +00:00
|
|
|
filename = f"problems/{name}"
|
|
|
|
instance = Instance(filename)
|
|
|
|
instance.print_info()
|
2019-10-23 19:19:38 +00:00
|
|
|
if show_plots:
|
|
|
|
instance.plot_data()
|
2019-10-31 15:17:47 +00:00
|
|
|
|
2019-10-31 17:58:06 +00:00
|
|
|
for method in methods:
|
2019-10-31 15:17:47 +00:00
|
|
|
solver = Solver_TSP(method)
|
2019-10-31 17:58:06 +00:00
|
|
|
start = t()
|
2019-10-31 15:17:47 +00:00
|
|
|
solver(instance, return_value=False)
|
2019-10-31 17:58:06 +00:00
|
|
|
end = t()
|
2019-10-31 15:17:47 +00:00
|
|
|
|
|
|
|
print(f"the total length for the solution found is {solver.found_length}",
|
|
|
|
f"while the optimal length is {instance.best_sol}",
|
|
|
|
f"the gap is {solver.gap} %", sep="\n")
|
2019-10-31 17:58:06 +00:00
|
|
|
index.append((name, method))
|
2019-10-31 18:05:53 +00:00
|
|
|
results.append([solver.found_length, instance.best_sol, solver.gap, end - start])
|
2019-10-31 17:58:06 +00:00
|
|
|
|
2019-10-31 15:17:47 +00:00
|
|
|
if show_plots:
|
|
|
|
solver.plot_solution()
|
2019-10-23 19:11:32 +00:00
|
|
|
|
2019-11-04 05:53:26 +00:00
|
|
|
if instance.exist_opt:
|
2019-11-04 05:43:54 +00:00
|
|
|
solver.solution = np.concatenate([instance.optimal_tour, [instance.optimal_tour[0]]])
|
2019-11-04 05:44:32 +00:00
|
|
|
solver.method = "optimal"
|
2019-11-04 05:43:54 +00:00
|
|
|
solver.plot_solution()
|
|
|
|
|
2019-10-31 17:58:06 +00:00
|
|
|
index = pd.MultiIndex.from_tuples(index, names=['problem', 'method'])
|
2019-10-31 17:33:22 +00:00
|
|
|
|
2019-10-31 17:58:06 +00:00
|
|
|
return pd.DataFrame(results, index=index, columns=["tour length", "optimal solution", "gap", "time to solve"])
|
2019-10-23 19:11:32 +00:00
|
|
|
|
2019-10-31 18:05:53 +00:00
|
|
|
|
2019-10-23 19:07:20 +00:00
|
|
|
if __name__ == '__main__':
|
2019-10-31 18:05:53 +00:00
|
|
|
run(show_plots=True).to_csv("./results.csv")
|