Tagged Questions
The "[travelling salesman problem](http://en.wikipedia.org/wiki/Traveling_salesman_problem)" (often referred to by its initials: TSP) one of the most well known "hard" (NP-complete) problems in classical computer science. Simply stated, it involves finding the shortest path which could be taken by a hypothetical salesman to make a single visit to each location on a map (in a graph).
21
votes
6answers
719 views
Travelling salesman with repeat nodes & dynamic weights
Given a list of cities and the cost to fly between each city, I am trying to find the cheapest itinerary that visits all of these cities. I am currently using a MATLAB solution to find the cheapest ...
16
votes
13answers
3k 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 that it has been used ...
11
votes
2answers
1k views
What's wrong with my Hopfield Neural Network solution to the Traveling Salesman Problem?
First off, this is homework. I think it's clear I've made an effort and I'm looking for hints, not code.
The problem is the following. The equation of operation has four components for altering a ...
9
votes
7answers
415 views
Travelling Salesman with multiple salesmen?
I have a problem that has been effectively reduced to a Travelling Salesman Problem with multiple salesmen. I have a list of cities to visit from an initial location, and have to visit all cities with ...
7
votes
2answers
1k views
Using A* to solve Travelling Salesman Problem
I've been tasked to write an implementation of the A* algorithm (heuristics provided) that will solve the travelling salesman problem. I understand the algorithm, it's simple enough, but I just can't ...
6
votes
2answers
548 views
Is this problem NP-hard?
I'm trying to come up with a reasonable algorithm for this problem:
Let's say you have a bunch of balls. Each ball has at least one color, but can also be multicolored. Each ball also has a number ...
6
votes
5answers
4k views
traveling salesman problem, 2-opt algorithm c# implementation
Hello
Can someone give me a code sample of 2-opt algorithm for traveling salesman problem. For now im using nearest neighbour to find the path but this method is far from perfect, and after some ...
6
votes
5answers
737 views
Why does adding Crossover to my Genetic Algorithm gives me worse results?
I have implemented a Genetic Algorithm to solve the Traveling Salesman Problem (TSP). When I use only mutation, I find better solutions than when I add in crossover. I know that normal crossover ...
6
votes
2answers
238 views
Teleporting Traveler, Optimal Profit over time Problem
I'm new to the whole traveling-salesman problem as well as stackoverflow so let me know if I say something that isn't quite right.
Intro:
I'm trying to code a profit/time-optimized multiple-trade ...
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 ...
5
votes
3answers
78 views
Dealing with Massive Graphs - Traveling Salesperson
I'm teaching myself how to program algorithms involving TSPs (Djikstra, Kruskal) and I'm looking for some start up advice. I am working with C# and SQL. Ideally I'd like to be able to do this ...
5
votes
2answers
201 views
What is the problem name for Traveling salesman problem(TSP) without considering going back to starting point?
I would like to know what is the problem name for TSP w/o considering the way of going back to starting point and what is the algorithm to solve this.
I looked into Shortest path problem but that is ...
5
votes
3answers
754 views
Traveling salesman example with known global optimum
I made a memetic algorithm in Python for traveling salesman problem.
However, all the test data (list of distances between cities) I've encountered lack the information of the best solution, so I ...
5
votes
2answers
234 views
A detail question when applying genetic algorithm to traveling salesman
I read various stuff on this and understand the principle and concepts involved, however, none of paper mentions the details of how to calculate the fitness of a chromosome (which represents a route) ...
4
votes
1answer
190 views
Travelling Salesman and Map/Reduce: Abandon Channel
This is an academic rather than practical question. In the Traveling Salesman Problem, or any other which involves finding a minimum optimization ... if one were using a map/reduce approach it seems ...
4
votes
5answers
581 views
Solving the Travelling Salesman Problem in ruby (50+ locations)
I am working in a delivery company. We currently solve 50+ locations routes by "hand".
I have been thinking about using Google Maps API to solve this problem, but I have read that there is a 24 ...
4
votes
3answers
234 views
Algorithm to generate TSP solutions randomly
The most common heuristics to solve the TSP problem (in particular the Kernighan–Lin heuristic) require to work on a randomly generated tour and to improve the solution starting from that. However, ...
4
votes
2answers
416 views
Travelling Salesman Problem Constraint Representation
I read a couple of articles and sample code about how to solve TSP with Genetic Algorithms and Ant Colony Optimization etc. But everything I found didn't include time (window) constraints, eg. "I have ...
4
votes
2answers
376 views
Non-cycle path to all nodes
Is there an algorithm or set of algorithms that would let you find the shortest walking distance from an arbitrary start node so that every node gets visited in a weight, undirected graph? It's not ...
4
votes
6answers
2k views
Сrossover operation in Genetic algorithm for TSP
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 I perform the crossover operation over ...
4
votes
5answers
3k 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 out of this graph ...
4
votes
1answer
667 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 problem.
Heuristics vs ...
4
votes
3answers
2k 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 does it always ...
3
votes
3answers
200 views
Simplified Travelling Salesman in Prolog
I've looked through the similar questions but can't find anything that's relevant to my problem. I'm struggling to find an algorithm or set of 'loops' that will find a path from CityA to CityB, using ...
3
votes
4answers
727 views
How can the A* algorithm be applied to the traveling salesman problem? [closed]
Possible Duplicate:
Using A* to solve Travelling Salesman Problem
I have recently learned that the A* algorithm can be applied to the travelling salesman problem. Bot how exactly do we ...
3
votes
3answers
945 views
TSP (Traveling Salesman Problem) solver Using GoogleMap
We are developing an application, in which we will show some available houses for sale in google map. User can select any houses from the map and can find the shortest driving route between all the ...
3
votes
2answers
230 views
Is this a variation of the traveling salesman problem?
I'm interested in a function of two word lists, which would return an order agnostic edit distance between them.
That is, the arguments would be two lists of (let's say space delimited) words and ...
3
votes
3answers
553 views
Suggested GA operators for a TSP problem?
I'm building a genetic algorithm to tackle the traveling salesman problem. Unfortunately, I hit peaks that can sustain for over a thousand generations before mutating out of them and getting better ...
3
votes
1answer
1k views
TSP - branch and bound
I'm trying to solve the TSP with branch and bound algorithm.
I'm must bulid a matrix with cost but i have one big problem.
I have city with coordinates x and y.
The cost of travel is ...
2
votes
3answers
95 views
Need help to adapt a genetic algorithm to “solve” Traveling Salesman on Ruby
I just downloaded ai4r library http://ai4r.rubyforge.org/ and i am using the genetic algorithm to get a good route from multiple places, just like this:
...
2
votes
1answer
140 views
Minimal Distance Hamiltonian Path Javascript
I know this is a fairly frequent question (tsp in general), but I've been stumped by it for awhile now. I'm looking to find the minimal distance hamiltonian path given a set of x,y coordinates. The ...
2
votes
2answers
173 views
Traveling Salesman Problem with additional partial ordering
I am looking for a name for this problem or any leads on an algorithm or source code:
Example: You want to find the best route to visit the 100 largest cities in the US (classic TSP) but before you ...
2
votes
2answers
302 views
Using a queue to solve TSP (Branch and Bound)
I'm working on a Branch and Bound algorithm for the Traveling Salesman Problem and I've run into a little hitch. I'm using a pretty standard Queue with Nodes representing subsets of vertices (paths). ...
2
votes
2answers
157 views
Pickup and Delivery Problem Algorithm Help
Let's assume food delivery for multiple restaurants (say 20). There are (say 10) drivers available. Further, let's say we get 100 orders over a 4 hour period to deliver food from these restaurants to ...
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 ...
2
votes
3answers
592 views
Branch And Bound Implementation for TSP in Java
I wonder if there is a useful Java implementation of a Branch And Bound algorithm for the TSP or in general a OR framework which includes a BnB for TSP.
Thanks for your help!
Marco
2
votes
1answer
144 views
taskjuggler w/ multiple dependencies where task length depends on previous tasks
I have a task Z that can only be completed once either task X or
task Y is completed. Also:
% The length of task Z depends on which of X or Y is completed:
% If task X is completed, task Z takes ...
1
vote
1answer
31 views
Testing a Hamiltonian Path finder implementation
I am implementing an algorithm which finds an optimal Hamiltonian path in a directed graph. I have implemented an algorithm which appears to work reasonably well, however I am not entirely sure if ...
1
vote
3answers
77 views
Travelling Salesman Constructive Heuristics
Say, we have a circular list representing a solution of the traveling salesman problem. This list is initially empty.
If the user is allowed to enter a city and it's coordinate one by one, what ...
1
vote
1answer
86 views
Is there an algorithm to find the optimal value of k-tsp (traveling salesman) in polynomial time?
I read this article, it suggests (page 1025 last paragraph) that there is a polynomial time algorithm to find the optimum of a k-tsp problem using binary search.
Using binary search would suggest ...
1
vote
2answers
61 views
How to find the least cost to visit every vertex in an undirected, weighted graph at least once starting from a predetermined vertex?
The path taken does not have to end back at the predetermined vertex.
Basically, the traveling salesman problem except that a vertex can be visited more than one time.
EDIT: There will be up to a ...
1
vote
0answers
113 views
Clonal Selection Algorithm to solve the traveling salesman problem
I'm attempting to implement a solution to the Traveling Salesman Problem using the a Clonal Selection ALgorithm. I'm doing it for a class project of mine to compare how Clonal Selection compares with ...
1
vote
0answers
116 views
1
vote
2answers
683 views
Travelling Salesman Problem
I am trying to develop a program in C++ from Travelling Salesman Problem Algorithm. I need a distance matrix and a cost matrix. After using all the formulas, i get a new resultant matrix. But I dont ...
1
vote
4answers
280 views
Choice between Brute force approach and concurrent threads
I have a question concerning graphs. Consider a graph with nodes and edges, each edge having a cost. The problem is to visit all nodes so that the sum of costs of edges traversed is least (Traveling ...
1
vote
2answers
532 views
Traveling salesman library using approximation algorithm
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 ...
1
vote
1answer
410 views
Finding the optimum cost of a traveling salesman solution
I'm working on this problem:
TSP:
Input: A matrix of distances; a budget b
Output: A tour which passes through all the cities and has length <= b,
if such a tour exists.
TSP-OPT
Input: A matrix ...
1
vote
2answers
216 views
Need some help on this representation of Traveling Salesman Problem
I came across a traveling salesman solution which uses Matlab script, and in its code, I found that it uses a representation called City Coordinates, which looks like:
CityCood = ...
1
vote
1answer
467 views
Variation on Travelling salesman problem - pick a good subroute from many nodes based on constraints
TLDR version: Most important issue is, that in a TSP problem, instead of finding the shortest Hamiltonian cycle, what are good ways to find the best path (I suppose the one that visits the most nodes) ...
1
vote
1answer
490 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 doubt as it was not ...