Tagged Questions

11
votes
2answers
990 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
2answers
680 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
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 ...
0
votes
1answer
907 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
460 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
324 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)?
-6
votes
0answers
88 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 ...