permafixed the optimizer ???

This commit is contained in:
2024-07-08 02:01:42 +02:00
parent 568e7bfbc4
commit 30ed2bb9ed
3 changed files with 80 additions and 62 deletions

View File

@@ -99,8 +99,8 @@ def test4(coordinates: tuple[float, float]) -> List[Landmark]:
landmarks_short.insert(0, start)
landmarks_short.append(finish)
max_walking_time = 120 # minutes
detour = 30 # minutes
max_walking_time = 50 # minutes
detour = 0 # minutes
# First stage optimization
base_tour = solve_optimization(landmarks_short, max_walking_time, True)