dwavesystems / dwave-networkx

D-Wave Systems extension of the NetworkX Python package for graphs and graph algorithms.
https://docs.ocean.dwavesys.com/projects/dwave-networkx/en/latest
Apache License 2.0
89 stars 56 forks source link

TSP needs more usage info #82

Open JoelPasvolsky opened 5 years ago

JoelPasvolsky commented 5 years ago

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:

Expected behavior More info on range of problem inputs, how to set lagrange, etc

Environment:

Additional context @vgoliber

vgoliber commented 5 years ago

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.

JoelPasvolsky commented 5 years ago

Agree, @vgoliber, you mentioned having references and some guidance. Please add that here for that general update. Thanks!