10
votes
12answers
1k views
Have you used a traveling salesman algorithm to solve a problem?
I studied TSP in college in the context of NP Completeness. I have never actually had a situation where it would apply to a practical problem. A little bit of research shows t …
3
votes
7answers
199 views
Сrossover operation in Genetic algorithm for TSP
Hello everybody. I'm trying to solve the Travelling Salesman Problem (TSP) with Genetic algorithm
My Genome is permutation of vertex in graph (path for Salesman).
How should …
2
votes
2answers
447 views
Optimal map routing with Google Maps
Is there a way using the Google Maps API to get back an "optimized" route given a set of waypoints (in other words, a "good-enough" solution to the traveling salesman problem), or …
2
votes
2answers
520 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 …
1
vote
4answers
361 views
Minimum cost strongly connected digraph
I have a digraph which is strongly connected (i.e. there is a path from i to j and j to i for each pair of nodes (i, j) in the graph G). I wish to find a strongly connected graph …
1
vote
1answer
236 views
Using Traveling Salesman Solver to Decide Hamiltonian Path
This is for a project where I'm asked to implement a heuristic for the traveling salesman optimization problem and also the Hamiltonian path or cycle decision problem. I don't need …
1
vote
1answer
345 views
Traveling Salesman - Nearest Neighbor vs Genetic DEATHMATCH
Over the last few days I have noted a few web sites that demonstrated TS solution using genetic algorithms.
I am looking for your opinion which is better for this particular probl …
0
votes
1answer
24 views
Local search algorithm, complete confusion…
In (a) and (b), assuming a 2-exchange transformation operator, connect solutions A and B, which are TSP tours in path representation, to their possible neighbors among tours C, D, …
0
votes
1answer
80 views
Variation of TSP which visits multiple cities
I am looking to discuss branch and bound solution for TSP with multiple visits.(that is every city needs to be visited atleast once , instead of just once)
Edit:
Removed the doub …
