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 ...
2
votes
2answers
169 views

Parallel computing using computers in LAN?

I'm writing a C++ project to solve the Travelling salesman problem using genetic algorithms. Naturally, I'd like to make it faster using a bunch (about 40) computers in the same LAN. The computers are ...
-6
votes
0answers
89 views

Travelling salesman cannot move to more than a 10 cities [closed]

I saw this implementation of TSP and I want to make some changes in her. When it has 10 cities everything is ok.But when i try to change city count of 100 doesn`t found a road. This is what have i ...