Tagged Questions

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 ...
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 ...
1
vote
1answer
52 views

Calculating all bitonic paths

I'm trying to calculate all bitonic paths for a given set of points. Given N points. My guess is there are O(n!) possible paths. Reasoning You have n points you can choose from your starting ...
1
vote
2answers
704 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 ...
0
votes
3answers
223 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 ...
0
votes
1answer
909 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, E, F, G (a) A: 1 2 ...
-3
votes
3answers
469 views

How to solve Traveling Salesman in SML?

please anybody having traveling salesman problem solution in Standard ML, plz tell me. I've tried a lot but am not successfull... Thx in advance.
-4
votes
1answer
336 views

Brute force travelling salesman problem [closed]

I'm having trouble coming up with pseudo code for a simple brute force approach to the Travelling Salesman Problem. What would pseudo code look like with priority of minimal code (not optimisation)?