This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
AICup/run.py
2019-10-31 16:04:38 +01:00

26 lines
738 B
Python

from src import *
import os
def run(show_plots=False):
names = [name_ for name_ in os.listdir("./problems") if "tsp" in name_]
for name in names:
print("\n\n#############################")
filename = f"problems/{name}"
instance = Instance(filename)
instance.print_info()
solver = Solver_TSP('random')
solver(instance, return_value=False)
print(f"the total length for the solution found is {solver.evaluate_solution()}",
f"while the optimal length is {instance.best_sol}",
f"the gap is {solver.gap} %", sep="\n")
if show_plots:
instance.plot_data()
solver.plot_solution()
if __name__ == '__main__':
run()