run
This commit is contained in:
parent
617c4ec55f
commit
d2fd35820f
1 changed files with 1 additions and 1 deletions
2
run.py
2
run.py
|
@ -6,7 +6,7 @@ from time import time as t
|
|||
def run(show_plots=False):
|
||||
# names = [name_ for name_ in os.listdir("./problems") if "tsp" in name_]
|
||||
names = ["eil76.tsp"]
|
||||
methods = ["random", "nearest_neighbors", "best_nn", ]
|
||||
methods = Solver_TSP.available_methods.keys() #["random", "nearest_neighbors", "best_nn", ]
|
||||
results = []
|
||||
index = []
|
||||
for name in names:
|
||||
|
|
Reference in a new issue