Revert "Remove iteration print statement"
This reverts commit 9ef41abe46333523f6bc45fdee2a65738afb37e2.
This commit is contained in:
		
							parent
							
								
									9ef41abe46
								
							
						
					
					
						commit
						bd4a88bb4e
					
				@ -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):
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user