Where can I find source code for travelling salasman problem?

link|improve this question
1  
you must mean salesman – Woot4Moo Oct 20 '10 at 16:27
2  
Have you tried stackoverflow.com/questions/tagged/traveling-salesman ? – amelvin Oct 20 '10 at 16:30
6  
@Woot4Moo: the travelling salsaman problem is just as interesting. – Wooble Oct 20 '10 at 16:34
feedback

closed as not a real question by Henk Holterman, Dana, Moron, wheaties, delnan Oct 20 '10 at 16:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

nowhere, it's not been solved.

link|improve this answer
10  
where can i find the code for p=np – Aphex Oct 20 '10 at 16:33
feedback

You had mentioned that you were having problems with more than 8 or 9 nodes. This isn't surprising because the complexity increases exponentially with each added node.

alt text

As a result many solutions involve Genetic programming to gradually evolve a good answer. Finding the best generally requires a brute-force check of all possibilities. One example is here, which also provides their source code.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.