You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Choosing a value for a Lagrange parameter is a topic that is relevant for all of our algorithm tools (not just TSP). I think it would be more appropriate to provide higher level guidance and/or references on this subject as a whole rather than guidance specific to each algorithm.
Description
Most TSP problems I try fail to produce a minimal route. The parameters and working range of solvable problems should be outlined.
To Reproduce
The following alternative weights to the 5-node problem, EdgeView([(0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 3)]), all fail:
produces route: [3, 1, 0] (non-Hamiltonian route)
produces route: [1, 0, 3, 2] (a better answer is [1 2 0 3])
produces route: [3, 2, 1, 0] (a better answer is [2 1 0 3])
Expected behavior
More info on range of problem inputs, how to set lagrange, etc
Environment:
Additional context
@vgoliber
The text was updated successfully, but these errors were encountered: