You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Maps TSP Solver
I have added a new optimization technique to the solver. The 3-opt
algorithm is a local optimization technique similar to the 2-opt step
which is performed after each wave of ants in the ant colony solver.
Since 3-opt is much more expensive than 2-opt, it's too slow to use it
after each ant wave. But it is used after the ant colony / 2-opt combo
is done, and usually improves the solution quite a bit. The solution
quality is never degraded by this step.