kamil271e / double-tsp

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

Candidate Movements #32

Open unbreaking-V opened 5 months ago

unbreaking-V commented 5 months ago

Description: In this algorithm, candidate movements are those that introduce at least one candidate edge into the solution. Candidate edges are defined by selecting 10 other nearest vertices for each vertex. This parameter can also be adjusted experimentally to achieve optimal results. For example, the process of examining movements (between routes or within a route) can be as follows:

For each vertex ( n1 ):

Note: It's crucial to understand that the process involves assessing movements introducing specific edges into the solution, not merely exchanging vertices.