Optimized TSP Algorithms

后端 未结 7 899
猫巷女王i
猫巷女王i 2020-12-04 09:08

I am interested in ways to improve or come up with algorithms that are able to solve the Travelling salesman problem for about n = 100 to 200 cities.

Th

7条回答
  •  抹茶落季
    2020-12-04 09:46

    As of 2013, It is possible to solve for 100 cities using only the exact formulation in Cplex. Add degree equations for each vertex, but include subtour-avoiding constraints only as they appear. Most of them are not necessary. Cplex has an example on this.

    You should be able to solve for 100 cities. You will have to iterate every time a new subtour is found. I ran an example here and in a couple of minutes and 100 iterations later I got my results.

提交回复
热议问题