kamil271e / double-tsp

Assorted heuristics for solving a modified Traveling Salesperson Problem (TSP) combinatorial challenge.
0 stars 1 forks source link

Implement random walk #24

Closed kamil271e closed 6 months ago

kamil271e commented 7 months ago

Implement random walk, as a reference - in each iteration performs a randomly selected move (regardless of its evaluation) and returns the best solution thus found solution thus found.

Important: This algorithm should run in the same amount of time as the slowest of the average version of the local search.