Please use colab or replit online platform to write genetic algorithm python code and then send me a line in the below box.
Travelling Salesman Problem TSP : Given a set of cities and distances between every pair of cities, the problem is to find the shortest possible route that visits every city exactly once and returns to the starting point.
Note the difference between Hamiltonian Cycle and TSP The Hamiltonian cycle problem is to find if there exists a tour that visits every city exactly once. Here we know that Hamiltonian Tour exists because the graph is complete and in fact, many such tours exist, the problem is to find a minimum weight Hamiltonian Cycle.
For example, consider the graph shown in the figure on the right side. A TSP tour in the graph is The cost of the tour is which is
The problem is a famous NPhard problem. There is no polynomialtime known solution for this problem.
Examples:
Output of Given Graph:
minimum weight Hamiltonian Cycle :
:
AssIn this post, the implementation of a simple solution is discussed.
Consider city as the starting and ending point. Since the route is cyclic, we can consider any point as a starting point.
Generate all n permutations of cities.
Calculate the cost of every permutation and keep track of the minimum cost permutation.
Return the permutation with minimum cost.