From d29a162276ea01f9a51656206c29ecb4e9d24d0c Mon Sep 17 00:00:00 2001 From: UmbertoJr Date: Mon, 18 Nov 2019 08:18:16 +0100 Subject: [PATCH] solver --- src/TSP_solver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TSP_solver.py b/src/TSP_solver.py index bca39de..931141c 100644 --- a/src/TSP_solver.py +++ b/src/TSP_solver.py @@ -43,9 +43,11 @@ class Solver_TSP: start = t() self.solution = self.available_initializers[self.methods[0]](instance_) assert self.check_if_solution_is_valid(self.solution), "Error the solution is not valid" + print("init ok") for i in range(1, len(self.methods)): self.solution = self.available_improvements[self.methods[i]](self.solution, self.instance) assert self.check_if_solution_is_valid(self.solution), "Error the solution is not valid" + print("improve ok") end = t() self.time_to_solve = np.around(end - start,3)