diff --git a/src/local_search.py b/src/local_search.py index 0ac2247..cd64486 100644 --- a/src/local_search.py +++ b/src/local_search.py @@ -44,7 +44,8 @@ def get_random_solution(previous, data): def explore_neighbourhood(element, data, max_iterations=100000): neighbourhood = [] neighbourhood.append(element) - for _ in range(max_iterations): + for i in range(max_iterations): + print(f"Iteration {i}") previous_solution = neighbourhood[-1] neighbour = get_random_solution(previous=previous_solution, data=data) if neighbour.equals(previous_solution):