Skip to main content
. 2019 Jul 27;21(8):738. doi: 10.3390/e21080738
Algorithm 1 Outline of the procedure for solving the DTSP.
  • Load the static TSP instance  ▹ The original TSP instance becomes the first DTSP sub-problem

  • Initialize the algorithm-related data

  • while Stop criterion is not met do

  •     sub-problem-related initialization            ▹ Create swarm, neighborhood, etc.

  •     Solve the current sub-problem                ▹ Solve with DPSO, ACO, etc.

  •     Modify the current sub-problem to obtain the next one

  • end while