How can the Travelling Salesman Problem be solved using Solver Ad.

  • Thread starter Thread starter Guest
  • Start date Start date
For how many cities do you want to solve this problem? It won't take long
before you have billions of possible solutions. I seriously doubt the solver
is useful for this kind of tsak. The last time I had to deal with this
problem, I used a Genetic Algorithm written in C++.

If you still want to use Excel, you have to use an add-in written in C++ or
some .NET language. That is, Excel is only used as a kind of GUI.

/Fredrik
 
For toy problems you do it iteratively and check all possible solutions.

It is impossible to solve exhaustively for significant problems however.
For those you'll have to go read some math books for the optimum ways
to approximate a reasonable solution. Airlines and such spend huge
amounts of money trying to optimize their route systems with massive
computer systems and PhD mathematicians. It's not really a trivial
Excel problem for your PC.

Bill
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top