I'm currently doing a project that requires some fast TSP solving (about 50-100 nodes in 2 seconds). There are a lots of approximation algorithms out there, but I don't have time nor will to analyze them and code them myself.

Are there any free libraries that can solve TSP problem (approximation will do too)? Something like sortedNodes = solveTspPrettyPlease(nodes, 2sec) would be just great.

Thanks in advance.

link|improve this question

1  
+1 " Something like sortedNodes = solveTspPrettyPlease(nodes, 2sec) would be just great " I lol'ed. :) If only everything could be solved like that. Imagine this: pleaseRunMyEntireApplicationAsItShouldKThxBye(). :) – SyntaxT3rr0r Dec 28 '10 at 14:06
feedback

2 Answers

up vote 0 down vote accepted
link|improve this answer
feedback

Regarding the http://code.google.com/p/java-traveling-salesman/ link, you'll need to get the CVS version of jgap from April 1, 2006. You'll also need to hack the tsp code a little bit. Change JGapGreedyCrossoverEngine.java from protected double evaluate(Chromosome a_subject) to protected double evaluate(IChromosome a_subject)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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