Tagged Questions
6
votes
3answers
1k views
Looking for an open source Traveling Salesman function / library in c / c++?
I know there are a few different Traveling Salesman projects out there and I've played with LKH a bit, but I was wondering if anyone had any recommendations on any other ones?
My project is GPL'ed so ...
0
votes
0answers
84 views
minimum spanning tree for traveling salesman prblem
I have found Minimum spanning tree using Kruskal algorithm using C and adjacency matrix. Now I want to solve it for traveling salesman problem by doubling the edges and finding euler cycle or finding ...
0
votes
3answers
216 views
algorithm or approach to path problem, shortest path with n points for n <= 12
i have n points on a 2d plane, with n <= 12, and i need the distance of the shortest path available including all points, starting on any of them, but not making a closed circuit
i've been trying ...