Abstract
The dynamic traveling salesman problem (DTSP) falls under the category of combinatorial dynamic optimization problems. The DTSP is composed of a primary TSP sub-problem and a series of TSP iterations; each iteration is created by changing the previous iteration. In this article, a novel hybrid metaheuristic algorithm is proposed for the DTSP. This algorithm combines two metaheuristic principles, specifically ant colony optimization (ACO) and simulated annealing (SA). Moreover, the algorithm exploits knowledge about the dynamic changes by transferring the information gathered in previous iterations in the form of a pheromone matrix. The significance of the hybridization, as well as the use of knowledge about the dynamic environment, is examined and validated on benchmark instances including small, medium, and large DTSP problems. The results are compared to the four other state-of-the-art metaheuristic approaches with the conclusion that they are significantly outperformed by the proposed algorithm. Furthermore, the behavior of the algorithm is analyzed from various points of view (including, for example, convergence speed to local optimum, progress of population diversity during optimization, and time dependence and computational complexity).
1. Introduction
In recent years, both in civilian and military environments, considerable attention has been paid to optimizing tasks and problems in a dynamically changing environment. In the military environment, this attention is closely related to the growing increase in newly introduced technical means (e.g., unmanned systems), which are programmed to perform individual tasks by means of optimization techniques and algorithms. These techniques would make individual activities more efficient by finding a high-quality solution to the problem at hand.
The problem in which the input variables change in time is called the dynamic optimization problem (DOP). The optimization of DOPs aims to keep track of changes and adapt to them in order to effectively find high-quality solutions [1]. A simple example of a combinatorial DOP is the dynamic traveling salesman problem (DTSP). In this article, a metaheuristic approach for the DTSP is proposed and evaluated on a set of experiments.
This article is organized as follows. Later in this section, the mathematical formulation of the DTSP is presented and the authors’ motivation for dealing with this problem is discussed. Section 2 briefly reviews the literature connected with the heuristic approaches and algorithms of the DTSP. In Section 3, the new hybrid metaheuristic algorithm is proposed. Section 4 evaluates the algorithm on a set of benchmark instances and compares the results with other state-of-the-art metaheuristic techniques; this section also analyzes and discusses the parameters and behavior of the proposed algorithm. Finally, Section 5 concludes the article and offers several possibilities for future work.
1.1. Dynamic Traveling Salesman Problem
The DTSP is defined as a sequence of static TSP sub-problems (iterations). Let be the primary sub-problem which determines the number of vertices and their positions. The first iteration . is derived from the primary sub-problem ; both the positions of the vertices and their number may be affected (the extent of change is generally not limited). Each successive iteration is derived from the previous one; for . where is the total number of iterations (except the primary sub-problem).
Let . be a set of all TSP sub-problems; is a set of vertices representing an -th TSP iteration, i.e., where is the number of vertices in this iteration. The cost of traveling between any pair of vertices in the -th iteration is ; if the DSTP problem is symmetric, then for all . and , otherwise, the problem is asymmetric.
A solution to the DTSP problem is given by a set of routes , one for each iteration. A route in an iteration starts in an arbitrary initial vertex, visits all other vertices just once in some order, and then returns back to the initial vertex: where , for all , and for all and .
Quality of each solution of the DTSP can be calculated according to Formula (1) as a sum of costs of individual routes of all TSP iterations (). The cost of each route is calculated as a sum of all distances traveled within this route (see Formula (2)). The function represents the distance between vertices and on route .
The objective of the DTSP is to find such a route with a minimum value of . This route is considered optimal when for all other feasible solutions in the state space. As the DTSP is composed of a series of independent TSP iterations, the optimal solution can be found as a set of optimal routes for individual iterations (). The aim of the algorithms proposed for the solution is expressed in Formula (3); this means to find the highest quality solution possible, i.e., with the lowest total cost possible (optimal in the best case).
1.2. Motivation
The military application of the DTSP can be illustrated using the unmanned ground vehicle (UGV) used in systems of Command, Control, Communication, Computer, Intelligence, Surveillance, and Reconnaissance (C4ISR). For example, as a consequence of the commander’s need to obtain information from the area of intelligence responsibility (AIR) via a UGV, the C4ISR system plans a route for this UGV starting from its base and returning after visiting all the waypoints in the AIR and thus obtaining the necessary information. Due to the need to get information as quickly as possible, the task is to optimize its time and plan the trip as efficiently as possible. A UGV using the DTSP, taking into account the distances between each programmed point in the designated area, can generate a route and start searching for information. However, due to unpredictable circumstances (enemy, terrain, weather, etc.), it is difficult to consider traffic restrictions or delays that may affect the planned route. Traffic restrictions may change the scheduled time due to conditions, and the UGV will need to find an alternative route quickly to avoid losing the time it takes to explore the specified space.
The Tactical Decision Support System (TDSS), as part of the C4ISR system, is being developed at the University of Defence, Czech Republic. The objective of this system is to assist the tactical commanders of the Army of the Czech Republic in their decision-making processes [2]. The DTSP solution proposed in this article is used in one of the models of military tactics implemented in the TDSS. The objective of this model is to plan the reconnaissance operation for the AIR using a UGV in a changing and uncertain environment. The model places a number of waypoints in the AIR so that as much area as possible is explored using a minimum number of waypoints. All the waypoints need to be visited just once and, after visiting the last waypoint, the UGV returns. If the environment changes, the positions of the waypoints may also change and a new route is required. The algorithm proposed in this article is used to plan the route of the UGV. More information about the model can be found in [3]; the general topic of decision support for commanders is explored in [4,5,6,7,8,9,10].
1.3. Contributions
The main contributions of this article are as follows:
- A novel hybrid metaheuristic algorithm using the unique combination of ant colony optimization (ACO) and simulated annealing (SA) principles was proposed for the dynamic traveling salesman problem.
- The algorithm is universally applicable for symmetric and asymmetric as well as metric and non-metric DTSP problems.
- The performance of the algorithm was evaluated on a set of benchmark instances including small, medium, and large DTSP problems.
- The results on the benchmark problems were evaluated using a set of four different experiments in order to show the significance of (a) the hybridization of both metaheuristic principles and (b) knowledge about the dynamic changes in successive iterations.
- The results were compared with four other state-of-the-art metaheuristic algorithms based on the ant colony optimization or discrete particle swarm optimization approach.
- A detailed analysis of the behavior of the algorithm was conducted, including the influence of parameters on the convergence speed, progress of population diversity during optimization, degree of improvement caused by simulated annealing, and time dependence and computational complexity analysis.
- A possibility for further improvement of the solution for the DTSP was discussed and assessed using the k-opt optimization principle.
2. Literature Review
The TSP problem was one of the first NP-hard problems to be studied; the research started at Princeton University in the 1930s [11]. Since that time, the problem has attracted many researchers and thousands of different approaches and algorithms have been developed. The first attempts to solve the problem used linear programming techniques; the objective is to minimize a linear function subject to specified linear equality/inequality constraints [12]. This approach has evolved and is still being used in many solutions. One of the most well-known and popular solutions is the Concorde TSP solver [13] that participated in finding the optimal solution for all benchmark instances from the TSPLIB [14], including the largest instance with 85,900 vertices. This instance was solved by Concorde in April 2006, consuming over 136 CPU years on clusters with 256 processors [15].
Exact methods are not always suitable for larger instances. Therefore, many heuristic and metaheuristic approaches have been proposed. One of the most successful heuristics was developed by Lin and Kernigham [16]. Although the authors limited their algorithms to problems with at most 110 vertices, they can successfully be applied to much larger instances [17]. The improved Lin–Kernigham algorithm called LKH was introduced by Helsgaun [18]; this algorithm provided the best solution reported thus far for the World TSP instance containing 1,904,711 vertices [19]. Different metaheuristic methods for the TSP also emerged using various principles such as ant colony optimization (ACO) [20], particle swarm optimization (PSO) [21], simulated annealing [22], genetic algorithms [23], and others [24], as well as their combinations [25,26,27].
All the algorithms and methods developed for the TSP can also be used for the DTSP; each iteration can be solved independently of the others. However, the knowledge that one iteration is not much different from the next can be used in favor of the algorithms with the benefit of achieving better solutions and/or shorter optimization time. The literature is, of course, less extensive than in the case of the TSP, but still, this topic has been covered by hundreds of publications. Therefore, only the newest research and publications concerning the DTSP are examined in this section.
The ACO principle was used in several cases for solving the DTSP. Mavrovouniotis and Yang [28] addressed the problem of population adaptation to the new environments in successive iterations by increasing the population diversity via transferring knowledge from previous environments to the pheromone trails using immigrant schemes; they proposed and implemented different immigrant schemes in their ACO algorithm, including random immigrants, elitism-based immigrants, and memory-based immigrants. Ma et al. [29] proposed an adaptive ACO algorithm; it consists of the evaluation of the degree of changes in successive iterations of the TSP, and then an adaptive pheromone initialization mechanism configured according to this degree is used. In their ACO solution, Chowdhury et al. [30] developed adaptive-large-neighborhood-search-(ALNS)-based immigrant schemes to transfer knowledge from the pheromone trails in one iteration to the next; they implemented their method in a real-life application for wildlife surveillance via drones. Some other publications proposing the ACO principle for the DTSP can be found in [31,32,33].
The discrete particle swarm optimization approach was adapted for the DTSP by Strak et al. [34]. The authors proposed their PSO algorithm with heterogeneous (non-uniform) parameter values; the parameters are set automatically for the critical PSO parameters based on discrete probability distributions. This approach proved to be more successful compared to the original PSO with homogeneous (uniform) parameter values [35]. Genetic algorithms are also used in several cases for the DTSP such as when [36] presenting an algorithm called the extended virtual loser genetic algorithm (eVLGA) or [37] presenting a genetic algorithm that feeds on Newton’s motion equation to show how route optimization can be improved when targets are constantly moving.
So far, there have not been many attempts to hybridize two heuristics together for the DTSP. One of the few can be found in the paper by Boryczka and Strak [38] where the authors connected discrete PSO with ACO principles. The proposed solution uses the virtual pheromone matrix which serves as a communication topology and provides information about the landscape of global discrete space. Mavrovouniotis, Muller, and Yang [39] integrated the memetic ACO algorithm with local search operators to improve solutions in the population. They apply these local search operators to the best solution found in the population in order to possibly improve this solution; a similar idea is used in this article, but instead of local search operators, simulated annealing (SA) is used.
The idea of hybridization of the ACO and SA have been already applied in some studies dealing with a variety of problems. For example, the combination of the ACO and SA was successfully used as a machine learning technique to generate classification rules; see [40,41]. Another promising area for using the hybrid metaheuristics is image processing. The hybrid metaheuristic algorithm combining the ACO, SA, and genetic algorithm was used for efficient contrast enhancement of images [42,43]. The combination of ACO and SA were used in a few cases also for the TSP. The authors of [44] enhanced their ACO algorithm with the idea inspired by the SA approach: the temperature is introduced as a new parameter decreasing in iterations. Then, solutions generated by individual ants in an iteration are selected to update the pheromone trails using the Metropolis criterion (the higher the temperature, the bigger probability for a solution to be selected, even if it is inferior). This approach increases the convergence speed. A different approach was adopted in [45]. The SA, along with the mutation operator, was used to increase the ant population diversity.
The authors of this article are not aware of any research which hybridizes ant colony optimization with simulated annealing for the dynamic traveling salesman problem. Although there are some publications combining the ACO and SA for the TSP, the ideas behind the integration of the both principles in these publications are different than the idea presented in this article.
3. Hybrid ACO Algorithm
In this section, a hybrid metaheuristic algorithm for the DTSP is proposed. The algorithm hybridizes two stochastic approaches: ant colony optimization (ACO) and simulated annealing (SA). The acronym ACO-SA is used for further reference. Both principles are first examined independently in Section 3.1 and Section 3.2, and then their hybridization is proposed in Section 3.3.
3.1. Ant Colony Optimization
The ACO, part of the ACO-SA algorithm, is based on the algorithm proposed by the authors for the multi-depot vehicle routing problem (MDVRP). This section adapts this algorithm to the DTSP; the MDVRP version can be found in [46]. The application of this algorithm to the DTSP instead of the MDVRP allows some simplifications which follow from using only a single colony of ants instead of multiple colonies, or missing constraints concerning the maximum length and/or capacity of vehicles.
The key parameters of the ACO algorithm are in Table 1 along with a brief discussion. More information about their function and place in the algorithm can be found in the text below. Table 2 records all variables and symbols used in this section.
Table 1.
Key parameters of the ant colony optimization (ACO) algorithm.
Table 2.
Variables and symbols used in Section 3.1.
Algorithm 1 presents the ACO algorithm in pseudocode. For each iteration, including iteration zero (), the algorithm repeats the same process in a loop (lines 3 to 34); the result of each loop is cost (line 33) and route . (line 34) representing the -th TSP solution. The first key step in each loop is the initialization of the pheromone matrix (line 6). The details of this process are mentioned later in this section (see Algorithm 2). Note that in the zero iteration (), route , which is undefined, is used as an input of the initialization function. It does not affect the functionality, as Algorithm 2 does not work with this parameter when .
The process of finding a solution for the -th TSP proceeds in a number of generations (lines 7 to 32). In each generation, heuristic information obtained in previous generations in the form of the pheromone matrix is used to generate a set of solutions; each solution (route ) is found for each ant in the colony () independently of one another (lines 9 to 25).
A solution for each ant is created based on the gradual selection of vertices from set and their insertion into route in a loop (lines 14 to 20). For this, set is established, registering all vertices still missing in route (line 13). The loop ends when this set is empty, i.e., there are no more vertices in set , which means that route contains all vertices from set . Each vertex is a candidate for insertion into route ; the probability of this insertion (lines 15 to 16) is calculated according to Formula (4). The next vertex in the route is selected based on these probabilities (line 17) using a simple roulette wheel principle (see Algorithm 3 later in this section):
where is the distance between the last vertex inserted into route (which is vertex ) and candidate vertex (), is a pheromone trail between the last vertex inserted into route and vertex , is the distance between the last vertex inserted into route and vertex (), is a pheromone trail between the last vertex inserted into route and , is the coefficient controlling the influence of the distance between vertices on the probability, and is the coefficient controlling the influence of the pheromones on the probability. As can be seen, the distance is inversed, i.e., the bigger the distance, the lower the probability.
The best route of all ants (.), i.e., the one with the lowest cost , is stored as route (lines 23 to 25). If the best solution found in a generation is better than the best solution found so far in previous generations, this solution is saved as route with cost (lines 26 to 28).
Then, the pheromone matrix modification process starts; this process is composed of two phases. In the first phase (lines 29 to 30), the trails in the pheromone matrix evaporate; the speed is controlled by the pheromone evaporation coefficient . In the second phase (lines 31 to 32), the pheromone matrix is updated according to best route . Trails between neighboring vertices in route are intensified. The strength depends on the pheromone updating coefficient as well as on the quality of solution compared to the best-known solution .
Although Algorithm 1, for the sake of simplicity, uses a constant number of generations to find a TSP solution (loop on lines 7 to 32), the real implementation enables two other termination conditions to end an individual iteration. The first one is the maximum time constraint; the second is the maximum specified number of generations without improving a solution (i.e., the number of generations in which the condition on line 26 is not met).
| Algorithm 1. ACO algorithm for the DTSP |
Algorithm_DTSP_ACO (V,Ng,Na,ρ,δ,τ,α,β)
|
Algorithm 2 presents the principle of the pheromone matrix initialization at the beginning of each -th TSP iteration (see line 6 in Algorithm 1). In the first phase, all elements in pheromone matrix are set to 1 (lines 2 to 3); this value represents the initial pheromone strength of a connection between two vertices. In the second phase, a solution from the previous iteration () is used to update the matrix. This is based on an assumption following from the DTSP problem that only a small percentage of vertices changed from one iteration to another. Thus, a great part of the information from the solution found in the previous iteration is also valid in the current iteration. This information is integrated into the pheromone matrix by intensifying the trails between neighboring vertices in route (lines 5 to 6). The strength of this intensification is controlled by the pheromone initialization coefficient . In the zero iteration () where there is no known route from the previous iteration, the second phase is skipped (see the condition on line 4). The second phase could also be skipped in case it is required to solve the DTSP problem as a number of independent TSP problems.
| Algorithm 2. Pheromone matrix initialization |
Initialize_Pheromone_Matrix (N,Ri−1,τ)
|
Algorithm 3 shows the principle of selecting the next vertex from set based on probabilities (see line 17 in Algorithm 1). The algorithm uses the simple roulette wheel selection principle. is a pseudo-random number generator with uniform distribution ranging from to .
| Algorithm 3. Selection of the next vertex in the route |
Select_Next_Vertex (U,p1,p2, ...p|U|)
|
3.2. Simulated Annealing
The simulated annealing (SA) part of the ACO-SA algorithm is inspired by annealing in metallurgy, where this process is used to reduce the defects of material by way of heating and controlled cooling. The key idea behind the SA is to accept the worse solutions with some probability, thus expanding the search space explored for the global optimum. The SA can be used both for continuous and discrete state space.
The SA implementation presented in this section is only used for a single TSP problem instead of a series of TSP iterations. The reason for this is that it is needed for the hybridization with the ACO. To use it for the DTSP, the algorithm could be executed repeatedly with the solution from the previous iteration as an input.
Table 3 shows the key parameters of the SA algorithm; their function and place in the algorithm is mentioned below in more detail. Table 4 records all new symbols and variables used in this section; symbols in common with Section 3.1 can be found in Table 2.
Table 3.
Key parameters of the SA algorithm.
Table 4.
Variables and symbols used in Section 3.2.
Algorithm 4 shows the SA algorithm for the TSP in pseudocode. As input, route enters the algorithm representing the first (initial) solution. This can be any feasible solution either found by another algorithm (e.g., by the nearest neighbor algorithm) or randomly generated (i.e., containing all vertices in random order). The algorithm works in generations (lines 4 to 19); during each generation, the same value is used for the temperature (starting with value in the first generation). When a generation ends, the temperature is lowered (line 18) and the next generation starts. When the temperature is lower than the minimum threshold , the algorithm ends, returning the best solution found.
In each generation, a number of transformations and replacements are conducted (lines 6 to 17). The transformation of a current solution into a new solution (line 7) is a key part of the algorithm. This process is discussed later in this section (see Algorithm 5). The newly created solution replaces the original (lines 10 to 13) with a probability (line 9) calculated according to the Metropolis criterion (5). If the new solution is better than the original, it is always replaced. Otherwise, the probability of replacements depends on the difference in quality of both solutions and the current temperature. Higher temperatures increase the chances of accepting worse solutions; this happens more often in the initial phases (generations) of the algorithm.
The numbers of conducted transformations and replacements within a generation are limited by the parameters and . Each generation ends when either or exceeds its permitted value. The best solution found during the execution of the algorithm is saved (lines 14 to 16) and returned when the algorithm ends (line 19).
| Algorithm 4. SA algorithm for the TSP |
Algorithm_TSP_SA (Vi,RSA,Tmax,Tmin,γ,n1max,n2max)
|
Table 5. Firstly, a random vertex from the original route is selected (except the first and the last vertices) to change its position (line 1); RandI(a,b) is a pseudo-random integer generator with uniform distribution ranging from to . Then, the range specifying the number of positions by which the selected vertex moves within the route is calculated (lines 2 to 3) using the function which is a pseudo-random number generator with normal distribution with a mean of and a standard deviation of calculated according to Formula (6). This ensures that when the current temperature is not far from its maximum value, the selected vertex can be moved across the whole route ( for ), whereas when the current temperature is close to its minimum value, the selected vertex is moved only in the close vicinity around its position in the route ( for ). This principle ensures the extensive exploration of state space in the beginning phases of the algorithm and the tuning of the solution in the final phases. Finally, the vertex is moved in the transformed route (lines 4 to 12) by a specified number of positions to the left () or the right ().
Table 5.
New parameters of the ACO-SA algorithm.
| Algorithm 5. Solution transformation |
Transform_Solution (rSA,N,T,Tmax,Tmin)
|
3.3. Hybridization
In this section, hybridization of the ACO and SA algorithms is proposed. The basic idea behind this is as follows: the ACO algorithm (Section 3.1) is the key approach complemented by the SA algorithm (Section 3.2) which is used as a local optimization process. This process is applied to the best solution () found by the ants in a generation; this solution inputs the SA algorithm where it is possibly improved.
Table 5 shows the new parameters controlling this local optimization process. These parameters determine the generations in which the SA algorithm is executed. The first one () controls the frequency of executions, the second () sets the last generation where the SA algorithm is executed (i.e., it is not executed in generations after the one given by this parameter).
Algorithm 6 shows the hybridization in pseudocode. The ACO part is simplified compared to the original, as shown in Algorithm 1. Instead, new procedures are used as follows:
- Find_Route (used on line 7 in Algorithm 6). This procedure covers the process of finding a route for each ant (it replaces lines 10 to 22 in Algorithm 1).
- Get_Best_Route (used on line 8 in Algorithm 6). This procedure selects the best solution found by ants (it replaces lines 23 to 25 in Algorithm 1).
- Get_Better_Route (used on line 11 in Algorithm 6). This procedure returns the better of two solutions in order to save the best solution found so far (it replaces lines 26 to 28 in Algorithm 1).
- Evaporate_Pheromone_Matrix (used on line 12 in Algorithm 6). This procedure evaporates the pheromone matrix as shown on lines 29 to 30 in Algorithm 1.
- Update_Pheromone_Matrix (used on line 13 in Algorithm 6). This procedure updates the pheromone matrix as shown on lines 31 to 32 in Algorithm 1.
The local optimization process in the form of the SA algorithm is located on lines 9 to 10 in Algorithm 6. This process is executed provided that the condition on line 9 is satisfied; this condition uses parameters as described in Table 5. If the condition is satisfied, the SA algorithm is executed; the best route found by ants in a generation () inputs the algorithm as an initial solution (). If the SA algorithm improves the initial solution, the solution is replaced by this new improved solution (if not, the solution returned by the SA algorithm is the same as the initial solution). The improved solution is used to update the pheromone matrix (line 13). Then, a new generation starts and the whole principle is repeated until the termination condition is met.
| Algorithm 6. Hybrid ACO-SA algorithm |
Algorithm_DTSP_ACO-SA (V,Ng,Na,ρ,δ,τ,α,β,Tmax,Tmin,γ,nimax,n2max,safreq,sanum)
|
3.4. Computational Complexity
The computational complexity of the ACO algorithm is defined in Formula (7). It depends on the number of generations (linear dependence), the size of the population of ants (linear dependence), and the number of vertices in the graph (quadratic dependence). The dependence on the number of vertices emerges three times on the left side of the formula: the left term is caused by finding a route for each ant (quadratic dependence), the middle term represents the pheromone evaporation process (quadratic dependence), and the right term represents the pheromone updating process (linear dependence). However, both the pheromone evaporation and pheromone updating processes can be ignored (see the right side of the formula) as they are outside the loop for finding routes for ants. The quadratic complexity of finding a route for each ant is caused by consecutive insertion of vertices into the route; the selection of each vertex is also linearly dependent on as every vertex still missing in the route has to be considered (i.e., the probabilities of inserting all missing vertices have to be calculated).
The computational complexity of the SA algorithm is defined in Formula (8). It depends on the number of generations (linear dependence), the maximum number of transformations in a generation (linear dependence), and the number of vertices in the graph (linear dependence). The number of generations for the SA algorithm was not defined in the text above; it depends on the maximum and minimum temperature and cooling coefficient as shown in Formula (9). The maximum number of transformations is used in Formula (8) instead of the maximum number of replacements because the number of transformations is always equal to or greater than the number of replacements. The linear dependence on the number of vertices represents the process of the solution transformation and its following evaluation.
The final computational complexity of the proposed ACO-SA algorithm is defined in Formula (10) which combines Formulas (7) and (8). In each generation of the ACO part of the algorithm, routes for each ant need to be found (term ), and then the SA algorithm is executed (term ).
4. Experiments and Results
This section presents experimental results of the ACO-SA algorithm. In the first part, the benchmark instances used in experiments are introduced. Then, the experiments and results are presented and evaluated and subsequently compared with other rival state-of-the-art metaheuristic algorithms. In the last part, various parameters and characteristics of the proposed algorithm are analyzed and discussed. The ACO-SA algorithm was implemented in C++ programming language using MS Visual Studio integrated development environment.
4.1. Benchmarks
The DTSP benchmark instances are based on the well-known TSPLIB symmetric problems [47]. These TSP problems represent the zero iteration . Every successive iteration (, , …) is generated from the previous one by modifying positions of selected vertices; about 3% of vertices randomly change their positions in the next iteration. The same DSTP benchmark instances (created by the authors of [34]) were used for all algorithms to ensure even-handed comparison. The benchmark instances as well as the results are available for download at https://www.unob.cz/fvl/struktura/k111/Documents/DTSP_ACO-SA.zip.
Table 6 records the benchmark instances used. In total, there are six instances with various ranges of complexity: two small problems (), two medium problems (), and two large problems (). In all cases, there are 11 iterations to . i.e., the original TSP graph and 10 modified graphs , , …, . The last column of Table 6 shows the representation of positions of vertices in a graph: it is either 2D Euclidean (the position of each vertex is represented by coordinates in two-dimensional space) or geographical (the position of each vertex is represented by longitude and latitude on Earth). This influences the way of computing the edge weights (distances between vertices) in the graph.
Table 6.
Benchmark instances.
4.2. Experiments
Four different sets of experiments with all the benchmark instances were conducted as shown in Table 7; the sets are labeled with the letters A, B, C, and D. These sets of experiments vary one from another by (a) the algorithm used for the solution and (b) pheromone matrix initialization. In order to emphasize the improvement in results achieved due to hybridization, both the original ACO algorithm (sets A and B) and the hybridized ACO-SA algorithm (sets C and D) are used for the solution. The pheromone matrix initialization offers two possibilities: TSP and DTSP. The former (sets A and C) does not initialize the pheromone matrix (see line 6 in Algorithm 1) according to the solutions found in the previous iterations; this means that the DTSP problem is solved as a set of independent TSP problems. The latter (sets B and D) does initialize the pheromone matrix according to the solutions found in the previous iterations as shown in Algorithm 2. Thus, the difference when solving a dynamic TSP and a number of independent TSP problems can be emphasized.
Table 7.
Experiment sets.
Table 8 presents the settings of parameters of the algorithm used in experiments (for nomenclature, see Table 1, Table 3 and Table 5). As can be seen, some ACO parameters vary significantly for individual benchmark instances, especially , , , and . One of the most important parameters is the pheromone evaporation coefficient which differs even in the same instances for different sets of experiments. The SA parameters (for sets C and D) were set so that the execution time of the whole SA part takes about 40% of the entire execution time of the algorithm.
Table 8.
Settings of parameters for experiments.
Table 9 and Table 10 show the results. Column records the average execution time (in seconds) that the algorithm needs to solve a single TSP iteration. Every DTSP instance was solved 60 times; denotes the best solution found, is the average value, and is the average standard deviation. The values , , and are, for each instance, presented as percentages, as the distance to the optimal solution; optimal solutions for individual TSP iterations of instances were found using the famous Concorde TSP solver [13]. All the algorithms were executed on a computer configured as follows: CPU Intel i7-7700 3.5 GHz (4 cores), 32 GB RAM.
Table 9.
Results of experiments A and B.
Table 10.
Results of experiments C and D.
The results show the improvement of solutions when the initialization of the pheromone matrix according to the solutions from previous iterations is performed (compare the results from experiment A with B and C with D). It is clear that solving the DTSP problem is far better than solving its iterations as independent TSP problems. The improvement of solutions over all benchmark instances is 6.13% (when comparing experiment A with B) and 3.84% (when comparing experiment C with D) respectively.
The enhancement of the original ACO algorithm by hybridization with the SA algorithm can be seen when comparing experiment A with C and B with D. The significant improvement is apparent—of course, at the cost of the longer execution time (about 40% longer, as mentioned above). The improvement calculated from the average solutions over all benchmark instances when using the ACO-SA algorithm instead of the ACO algorithm is 10.57% (when comparing experiment A with C) and 8.29% (when comparing experiment B with D) respectively.
Logically, the best results were achieved in experiment D where the instances were solved as DTSP problems using the ACO-SA algorithm. The average solutions for small and medium instances (berlin52, kroA100, kroA200, gr202) are not farther than 1% from the optimal solutions; for the large instances (pcb442, gr666), it is about 3%. The algorithm was able to find the minimum solutions as follows: equal to the optimal solution (.)—for instance, berlin52, very close to the optimal solutions for instances kroA100, kroA200, and gr202, and about 2% distant from the optimal solutions for large instances pcb442 and gr666. Moreover, in the case of instance berlin52, the optimal solution was reached in all 60 executions ().
4.3. Comparison
The results achieved in experiment D were compared with four other state-of-the-art metaheuristic algorithms, two of them based on the ACO principle, the other two on the PSO principle. These are as follows:
- ACS: ant colony system [48].
- PACO: population-based ant colony optimization [49].
- DPSO-Ho: discrete particle swarm optimization with homogeneous parameter values [35].
- DPSO-He: discrete particle swarm optimization with heterogeneous parameter values [34].
The same benchmark instances were used for all the algorithms to ensure fair comparison. Furthermore, the same size of population/swarm () as well as the number of generations () were used; this means that the same number of solutions were generated and evaluated during the PSO or ACO part of the algorithm (not counting transformations of the solution via simulated annealing). Moreover, various numbers of generations were used for individual instances to compare the quality of the solutions provided by the algorithms depending on the number of generations used.
Table 11 presents the settings of the pheromone evaporation coefficient of the ACO-SA algorithm for individual instances and different numbers of generations; this is the only parameter which changes when solving an instance using a different number of generations, as it controls the convergence speed. The remaining parameters are the same as those used in experiment D (see Table 8).
Table 11.
Settings of the pheromone evaporation coefficient.
The evaluation and comparison of results provided by the ACO-SA and the rival algorithms is in Table 12. For each instance and number of generations (i.e., an experiment), the table compares the average solutions and the average standard deviation (the latter only in the cases of the DPSO and ACO-SA algorithms). In each experiment, the ACO-SA algorithm was executed 60 times, providing 60 independent solutions that were averaged. The results for the rival algorithms were taken from [34]. The best solution for each row is marked in bold. The last row of Table 12 shows the average value of each column.
Table 12.
Comparison of results.
The results obtained by the ACO-SA algorithm outperform other approaches. With the single exception of instance pcb442 and , ACO-SA provided better (or the same) average solutions in all cases. The average value of calculated from all experiments is about 1.45% better compared to the second-best algorithm (PACO). Additionally, the standard deviation of the solutions is lower in most cases compared to both DPSO approaches; this shows greater stability of solutions in experiments (which are, at the same time, better).
In particular, the ACO-SA algorithm is especially strong, i.e., providing high-quality solutions, when using the low number of generations. For example, in the case of instance gr666 and , the solutions are 4.46% away from the optimal solution, whereas it is 5.89% in case of the PACO algorithm and more than 9% in case of other algorithms (note, for instance, that the results achieved on instance gr666 with are better than the results achieved via all other algorithms for ). On average, the ACO-SA algorithm provides about 1.79% better solutions than PACO when using the lowest number of generations in Table 12 for each instance ( for gr666, for pcb442, etc.); however, in the case of DPSO-Ho, it is more than 10%.
Table 13 compares the time needed for optimization of the algorithms DPSO-Ho and DPSO-He with ACO-SA. The comparison is for illustration only, as different computer configurations were used in the experiments (optimization times were taken from [34] for DPSO algorithms). Despite this, it is apparent that the ACO-SA algorithm is comparable to the small and medium instances. However, it takes longer to optimize it when using the same population size as well as the same number of generations for the large instances—in most cases, but not all of them. The optimization is faster, for example, in the case of instance gr666 and , and is comparable for .
Table 13.
Comparison of optimization times.
The linear dependence of the algorithms on the number of generations can be seen in Figure 1 using the example of instance gr666. For the ACO-SA algorithm, the optimization time can easily be estimated using formula: where is the time needed for a single generation. This is not true for the DPSO algorithms where the extra time for preparation before the first generation starts is required: . Values of and for the algorithms for instance gr666 are shown in Figure 1.
Figure 1.
Dependence of optimization time on the number of generations (instance gr666).
4.4. Analysis and Discussion
In this section, various features and parameters of the ACO-SA algorithm are examined (convergence speed, population diversity, improvement by simulated annealing, dependence of optimization time on the number of vertices, and further possibilities to improve the solution).
4.4.1. Convergence
First, the influence of the pheromone evaporation coefficient is discussed. This coefficient controls the speed of convergence to a local optimum. Figure 2 illustrates this on the zero TSP iteration of instance pcb442 for values of as follows: , , . The graph shows the progress of the solution quality during optimization (averaged from 60 optimization trials). As is obvious, the bigger values of cause faster convergence but lower final solution quality. The values of are taken from experiment D and they were set so that the results would be as good as possible with the number of generations available (, , and respectively). Note, for example, that for , the solution reaches its final quality somewhere close to the 300th generation.
Figure 2.
Solution convergence in dependence on the pheromone evaporation coefficient (instance pcb442).
4.4.2. Population Diversity
In this section, the diversity of solutions in a population of ants, and its progress with increasing numbers of generations, is studied on the zero iteration of instance gr202. In general, large diversity is desired in the early phases of optimization because it prevents solutions from getting stuck at a not-so-good local optimum. On the other hand, it should be low towards the end of optimization to tune the solution to a good local optimum (or even global optimum).
The diversity of solutions in the population of a particular generation is expressed by Shannon entropy according to Formula (11) where is the probability that edge between vertices and () is part of any solution in the population (). This probability can be calculated based on the numbers of occurrences of edges in the solutions (see Formula (12)). The function returns the number of times edge is part of solution routes in a population of size . The denominator expresses the total number of edges of which the routes are comprised.
Figure 3a shows the principle of the entropy calculation on a simple TSP example with 5 vertices (). The population is composed of two ants: . As can be seen, there are two common edges for both solutions (, ) and 6 distinct edges (, , , , , ); thus, and . The values can be also represented in a table as shown in Figure 3b; note that only half of the values in the table in Figure 3b (the values shaded in grey) are used to calculate entropy (because ). The probabilities are calculated in the table in Figure 3c, and the entropy for this population is
Figure 3.
Principle of entropy calculation: (a) TSP example; (b) edge occurrences; (c) edge probabilities.
It is also easy to calculate the minimum and maximum limits of entropy for each instance and population size (see Formulas (13) and (14)). The minimum entropy represents the population in which all solutions are exactly the same (for example, in case of the TSP in Figure 3; ). On the other hand, the maximum entropy represents the population in which no edge appears two or more times in every solution (for example, and in the case of the TSP in Figure 3; ).
The development of entropy during optimization in case of instance gr202 is shown in Figure 4; the minimum and maximum limits of entropy are also emphasized. The blue curve is the averaged value computed from 60 optimization trials using the ACO-SA algorithm, the light blue area represents the range of entropy in these 60 trials. At the beginning, the entropy is close to its maximum limit, then it drops fast to the point where it decreases almost linearly towards its minimum limit. Indeed, a value of entropy close to the minimum limit is reached in some cases; and in some of them, this minimum entropy was reached at somewhere around the 500th generation, which is about one quarter of optimization. The dashed violet curve shows the same task but this time using the ACO algorithm for optimization (i.e., without simulated annealing). It is clear that the diversity of the population drops faster in this case. Thus, the simulated annealing also contributes to maintaining the diversity of the population.
Figure 4.
Population diversity (instance gr202).
In trials where the entropy drops very close to its minimum limit, the solution converges to a local (or global) optimum, and the probability that it would be further improved in the next generations is very low. Therefore, the entropy can be used as a good criterion to terminate the optimization before it reaches the last generation . This idea was tested on instance gr202; the optimization was terminated when the entropy was less than 1% away from the minimum limit. The average optimization time in 60 trials was reduced by 68% (from 28.5 s to 9.1 s) while, at the same time, the average solution remained the same. This means that the average number of generations used in a trial was reduced from 2048 to 655. This big speedup is caused particularly in DTSP iterations ( to ) in which the speed of convergence is faster than in iteration due to the pheromone matrix initialization.
4.4.3. Simulated Annealing Improvements
In this section, the role of simulated annealing in the ACO-SA algorithm is examined. The SA algorithm is applied to the best solution in a generation which is then used to update the pheromone matrix (see points 31 and 32 of Algorithm 1). The best solution can be improved or, if not, it remains the same.
The average improvements of the best solution in dependence on a current generation for instances gr666 (), pcb442 (), and gr202 () are shown in Figure 5. The improvement is high in the first phases of the optimization (it is higher than 20% in the first generations for instances gr202 and gr666), the effect of which is the fast convergence. Then, the improvement decreases at different speeds for individual instances. In case of instances gr202 and pcb442, the improvement is non-zero during the entire optimization. In the case of instance gr666, it is zero in the last third of the optimization (note the purpose of parameter ; for this reason, in case of instance gr666, this parameter was set to in order to save the execution time). In general, the behavior of simulated annealing varies for each instance to be solved.
Figure 5.
Solution improvements by simulated annealing.
4.4.4. Time Dependence
The linear dependence of the algorithm on the number of generations was shown in Section 4.3 (see Figure 1). In this section, the dependence on the number of vertices is presented. For all six benchmark instances, the average time needed for a single generation was calculated, and its dependence on the number of vertices is shown in Figure 6. The quadratic dependence is obvious; this confirms Formula (10) in Section 3.
Figure 6.
Dependence of optimization time on the number of vertices.
4.4.5. Further Possibilities to Improve the Solution
Although the ACO-SA algorithm executed on the benchmark instances outperforms the other metaheuristic algorithms, there are more ways to improve the results. One of them is the application of exact optimization techniques to the results after the optimization. In this section, this idea is tested using the well-known k-opt optimization technique [50]. This technique was applied to all solutions (i.e., 60 solutions per instance and number of generations) provided by the ACO-SA algorithm (see Table 12).
Table 14 shows the results for . The improvement in the solutions is tangible. In the case of instance gr202, for example, the 2-opt optimization improved solution from 2.215% to 1.523%. In general, the size of improvement corresponds to the size of the solution gap to the optimum. It seems that using or is reasonable enough; higher values () have only a small further effect. Table 15 shows the average execution time needed for k-opt post-processing of a single TSP iteration (in seconds). For the small and medium instances, the execution time is insignificant; for the large instances (pcb442 and gr666), it is minor compared to the total optimization time (e.g., about 3% of the total time in case of instance gr666, and ). However, this process could be made significantly faster with the help of a few simple improvements (e.g., limiting the search to a number of the nearest neighbors) [51].
Table 14.
Results after k-opt optimization.
Table 15.
Execution time of k-opt optimization.
5. Conclusions
The ACO-SA algorithm proposed in this article uniquely combines two metaheuristic principles: ant colony optimization and simulated annealing. Four different experiments on selected benchmark instances (A, B, C, D) were conducted. The significant improvement in solutions when using the hybridized ACO-SA algorithm instead of the original ACO is apparent (compare the results in Section 4.2 of experiment A or B with C or D). On the other hand, the comparison of results from experiment A or C with B or D clearly proves the importance of incorporating the information about the changes in dynamic environment into the algorithm in the form of the pheromone matrix initialization.
The results achieved by the proposed ACO-SA algorithm significantly outperform the results of the four other metaheuristic approaches based on ant colony optimization or discrete particle swarm optimization. From the time point of view, for the small and medium problems, the time needed for optimization is comparable with these methods; this is true even for large problems with low numbers of generations. However, for large problems with higher numbers of generations, the time needed for optimization is longer than in the case of rival methods. This is caused by the quadratic dependence of the ACO-SA algorithm on the problem size. Because of the time as well as memory reasons (memory requirements are also quadratic dependent on the number of vertices), the proposed ACO-SA algorithm is not suitable for very large problems where .
The behavior of the ACO-SA algorithm can be controlled by several key parameters (the one most significantly influencing the behavior is the pheromone evaporation coefficient—see Section 4.4.1). Unfortunately, the optimal settings of the values of these parameters cannot be determined analytically in most cases as they are problem dependent (this can be true even for problems of the same or similar size and, to some extent, even for different iterations of the same DTSP). This means that finding the best values of parameters for a given problem sometimes requires a massive number of trials, which is, of course, time-consuming (although the empirical knowledge can shorten this time significantly). For this reason, it is still possible (and even probable) that the values of the parameters used to provide results in Section 4.2 (see Table 8) are still not optimally selected; thus, different values may be found so that the algorithm would provide even better results.
Future research of the authors, besides that dealing with other issues, will be devoted to resolving the drawback mentioned in the previous paragraph. In particular, the following issues will be pursued:
- Examination of the possibility of heterogeneous parameters. This means that the parameters would not have constant values during the whole optimization, but their values may change if necessary, based on the current situation. As an example, the pheromone evaporation coefficient will serve: at the beginning of the optimization, the higher values would ensure faster convergence; then, its value would gradually decrease based on the current state of the optimization (which can be, for example, assessed based on the value of entropy in the population—see Section 4.4.2). Both the upper and bottom limits of the coefficient will be adjusted automatically so that the user does not have to search for them.
- Examination of the influence of the time devoted to the SA part of the algorithm on the quality of the results. In this article, the parameters of the SA were set for all benchmark instances in such a way that the simulated annealing would take about 40% of the whole optimization time (this was the condition determined by the authors before the experiments). It is expected that better solutions would be provided if a longer time were reserved for the SA (e.g., 50%, 60%, 80%)—but of course at the expense of a longer execution time. The improvement in solutions in dependence on the time distribution between the ACO and SA parts requires further study.
- Hybridization of the ACO-SA algorithm with the local search optimization (e.g., k-opt optimization technique). This means that the local search optimization is used not only at the end of the algorithm as shown in Section 4.4.5 but also during the optimization process in selected generations. The local search and the SA process might complement each other.
- Extension of the ACO-SA algorithm for other optimization problems related to the TSP. The algorithm can be relatively easily modified to solve NP-hard problems such as vehicle routing problems (VRP), the multi-depot vehicle routing problem (MDVRP), and their variants.
Author Contributions
Conceptualization, P.S.; methodology, P.S.; software, P.S.; validation, K.M., J.N., and M.R.; formal analysis, K.M.; investigation, K.M. and M.R.; resources, P.S.; data curation, J.N.; writing—original draft preparation, P.S. and K.M.; writing—review and editing, P.S.; visualization, P.S.; supervision, M.R.; project administration, P.S.; funding acquisition, P.S. All authors have read and agreed to the published version of the manuscript.
Funding
This research received no external funding.
Conflicts of Interest
The authors declare no conflict of interest.
References
- Li, W. A Parallel Multi-Start Search Algorithm for Dynamic Traveling Salesman Problem. In Proceedings of the International Symposium on Experimental Algorithms, Crete, Greece, 5–7 May 2011; pp. 65–75. [Google Scholar]
- Stodola, P.; Mazal, J. Tactical Decision Support System to Aid Commanders in their Decision-Making. In Proceedings of the Modelling and Simulation for Autonomous Systems, Rome, Italy, 15–16 June 2016; pp. 396–406. [Google Scholar]
- Stodola, P.; Mazal, J. Model of Optimal Cooperative Reconnaissance and its Solution using Metaheuristic Methods. Def. Sci. J. 2017, 67, 529–535. [Google Scholar] [CrossRef]
- Drozd, J.; Neubauer, J. Use of an aerial reconnaissance model during the movement of oversized loads. J. Déf. Model. Simul. Appl. Methodol. Technol. 2019. [Google Scholar] [CrossRef]
- Drozd, J. Experiment of the Tactical Decision Support System within Company Defensive Operation. In Proceedings of the Modelling and Simulation for Autonomous Systems, Prague, Czech Republic, 17–19 October 2018; pp. 544–552. [Google Scholar]
- Rolenec, O.; Silinger, K.; Palasiewicz, T.; Zizka, P. Supporting the decision-making process in the planning and controlling of engineer task teams to support mobility in a combat operation. Int. J. Educ. Inf. Technol. 2019, 13, 33–40. [Google Scholar]
- Hodicky, J.; Prochazka, D.; Prochazka, J. Training with and of Autonomous System—Modelling and Simulation Approach. In Proceedings of the Modelling and Simulation for Autonomous Systems, Rome, Italy, 24–26 October 2017; pp. 383–391. [Google Scholar]
- Bruzzone, A.G.; Massei, M.; Di Matteo, R.; Kutej, L. Introducing Intelligence and Autonomy into Industrial Robots to Address Operations into Dangerous Area. In Proceedings of the Modelling and Simulation for Autonomous Systems, Prague, Czech Republic, 17–19 October 2018; pp. 433–444. [Google Scholar]
- Otrisal, P.; Obsel, V.; Buk, J.; Švorc, L. Preparation of Filtration Sorptive Materials from Nanofibers, Bicofibers, and Textile Adsorbents without Binders Employment. Nanomaterials 2018, 8, 564. [Google Scholar] [CrossRef]
- Blaha, M.; Silinger, K. Application support for topographical-geodetic issues for tactical and technical control of artillery fire. Int. J. Circuits Syst. Signal Process. 2018, 12, 48–57. [Google Scholar]
- Flood, M.M. The Traveling-Salesman Problem. Oper. Res. 1956, 4, 61–75. [Google Scholar] [CrossRef]
- Dantzig, G.; Fulkerson, R.; Johnson, S. Solution of a Large-Scale Traveling-Salesman Problem. J. Oper. Res. Soc. Am. 1954, 2, 393–410. [Google Scholar] [CrossRef]
- Applegate, D.L.; Bixby, R.E.; Chvátal, V.; Cook, W.J. The Travelling Salesman Problem: A Computational Study; Princeton University Press: Princeton, NJ, USA, 2006. [Google Scholar]
- Reinelt, G. TSPLIB—A Traveling Salesman Problem Library. ORSA J. Comput. 1991, 3, 376–384. [Google Scholar] [CrossRef]
- Applegate, D.; Bixby, R.E.; Chvátal, V.; Cook, W.; Espinoza, D.G.; Goycoolea, M.; Helsgaun, K. Certification of an optimal TSP tour through 85,900 cities. Oper. Res. Lett. 2009, 37, 11–15. [Google Scholar] [CrossRef]
- Lin, S.; Kernighan, B.W. An Effective Heuristic Algorithm for the Traveling-Salesman Problem. Oper. Res. 1973, 21, 498–516. [Google Scholar] [CrossRef]
- Applegate, D.; Cook, W.; Rohe, A. Chained Lin-Kernighan for Large Traveling Salesman Problems. INFORMS J. Comput. 2003, 15, 82–92. [Google Scholar] [CrossRef]
- Helsgaun, K. An effective implementation of the Lin–Kernighan traveling salesman heuristic. Eur. J. Oper. Res. 2000, 126, 106–130. [Google Scholar] [CrossRef]
- Solving TSPs: World TSP. Available online: http://www.math.uwaterloo.ca/tsp/world/index.html (accessed on 30 June 2020).
- Dahan, F.; El Hindi, K.; Mathkour, H.; Alsalman, H.; Hindi, E. Dynamic Flying Ant Colony Optimization (DFACO) for Solving the Traveling Salesman Problem. Sensors 2019, 19, 1837. [Google Scholar] [CrossRef] [PubMed]
- Ahmed, A.K.M.F.; Sun, J.U. An Improved Particle Swarm Optimization Algorithm for the Travelling Salesman Problem. Adv. Sci. Lett. 2016, 22, 3318–3322. [Google Scholar] [CrossRef]
- Shirdel, G.H.; Abdolhosseinzadeh, M. A simulated annealing heuristic for the online symmetric traveling salesman problem. J. Inf. Optim. Sci. 2018, 39, 1–14. [Google Scholar] [CrossRef]
- Jafarzadeh, H.; Moradinasab, N.; Elyasi, M. An Enhanced Genetic Algorithm for the Generalized Traveling Salesman Problem. Eng. Technol. Appl. Sci. Res. 2017, 7, 2260–2265. [Google Scholar]
- Akhand, M.A.H.; Ayon, S.I.; Shahriyar, S.; Siddique, N.; Adeli, H. Discrete Spider Monkey Optimization for Travelling Salesman Problem. Appl. Soft Comput. 2020, 86, 105887. [Google Scholar] [CrossRef]
- Khan, I.; Pal, S.; Maiti, M.K. A Hybrid PSO-GA Algorithm for Traveling Salesman Problems in Different Environments. Int. J. Uncertain. Fuzziness Knowl. Based Syst. 2019, 27, 693–717. [Google Scholar] [CrossRef]
- Yu, M. A solution of TSP based on the ant colony algorithm improved by particle swarm optimization. Discret. Contin. Dyn. Syst. S 2019, 12, 979–987. [Google Scholar] [CrossRef]
- Hertono, G.F.; Handari, B.D. The Modification of Hybrid Method of Ant Colony Optimization, Particle Swarm Optimization and 3-OPT Algorithm in Traveling Salesman Problem. In Proceedings of the International Conference on Mathematics: Pure, Applied and Computation, Surabaya, Indonesia, 1 November 2017. [Google Scholar]
- Mavrovouniotis, M.; Yang, S. Ant colony optimization with immigrants schemes for the dynamic travelling salesman problem with traffic factors. Appl. Soft Comput. 2013, 13, 4023–4037. [Google Scholar] [CrossRef]
- Ma, A.X.; Zhang, X.H.; Zhang, C.S.; Zhang, B.; Gao, Y. An Adaptive Ant Colony Algorithm for Dynamic Traveling Salesman Problem. J. Inf. Sci. Eng. 2019, 35, 1263–1277. [Google Scholar]
- Chowdhury, S.; Marufuzzaman, M.; Tunc, H.; Bian, L.; Bullington, W. A modified Ant Colony Optimization algorithm to solve a dynamic traveling salesman problem: A case study with drones for wildlife surveillance. J. Comput. Des. Eng. 2018, 6, 368–386. [Google Scholar] [CrossRef]
- Mavrovouniotis, M.; Van, M.; Yang, S.X. Pheromone Modification Strategy for the Dynamic Travelling Salesman Problem with Weight Changes. In Proceedings of the IEEE Symposium Series on Computational Intelligence, Honolulu, HI, USA, 27 November–1 December 2017. [Google Scholar]
- Sieminski, A. Solving Dynamic Traveling Salesman Problem with Ant Colony Communities. In Proceedings of the International Conference on Computational Collective Intelligence, Nicosia, Cyprus, 27–29 September 2017. [Google Scholar]
- Schmitt, J.P.; Baldo, F.; Parpinelli, R.S. A MAX-MIN Ant System with Short-term Memory Applied to the Dynamic and Asymmetric Traveling Salesman Problem. In Proceedings of the Brazilian Conference on Intelligent Systems, Sao Paulo, Brazil, 22–25 October 2018. [Google Scholar]
- Strąk, Ł.; Skinderowicz, R.; Boryczka, U.; Nowakowski, A. A Self-Adaptive Discrete PSO Algorithm with Heterogeneous Parameter Values for Dynamic TSP. Entropy 2019, 21, 738. [Google Scholar] [CrossRef]
- Strąk, Ł.; Skinderowicz, R.; Boryczka, U. Adjustability of a discrete particle swarm optimization for the dynamic TSP. Soft Comput. 2017, 22, 7633–7648. [Google Scholar] [CrossRef]
- Simoes, A.; Costa, E. Extended Virtual Loser Genetic Algorithm for the Dynamic Traveling Salesman Problem. In Proceedings of the Genetic and Evolutionary Computation Conference, Amsterdam, The Netherlands, 6–10 July 2013. [Google Scholar]
- Groba, C.; Sartal, A.; Vázquez, X.H. Solving the dynamic traveling salesman problem using a genetic algorithm with trajectory prediction: An application to fish aggregating devices. Comput. Oper. Res. 2015, 56, 22–32. [Google Scholar] [CrossRef]
- Boryczka, U.; Strak, L. A Hybrid Discrete Particle Swarm Optimization with Pheromone for Dynamic Traveling Salesman Problem. In Proceedings of the International Conference on Computational Collective Intelligence, Ho Chi Minh City, Vietnam, 28–30 November 2012. [Google Scholar]
- Mavrovouniotis, M.; Muller, F.M.; Yang, S. Ant Colony Optimization With Local Search for Dynamic Traveling Salesman Problems. IEEE Trans. Cybern. 2017, 47, 1743–1756. [Google Scholar] [CrossRef]
- Saian, R.; Ku-Mahamud, K.R. Hybrid Ant Colony Optimization and Simulated Annealing for Rule Induction. In Proceedings of the European Symposium on Computer Modeling and Simulation, Madrid, Spain, 16–18 November 2011. [Google Scholar]
- Saian, R. A Hybrid of Ant Colony Optimization Algorithm and Simulated Annealing for Classification Rules. Ph.D. Thesis, Universiti Utara Malaysia, Changlun, Malaysia, 2013. [Google Scholar]
- Hoseini, P.; Shayesteh, M.G. Hybrid Ant Colony Optimization, Genetic Algorithm, and Simulated Annealing for image contrast enhancement. In Proceedings of the IEEE Congress on Evolutionary Computation, Barcelona, Spain, 18–23 July 2010. [Google Scholar]
- Hoseini, P.; Shayesteh, M.G. Efficient contrast enhancement of images using hybrid ant colony optimisation, genetic algorithm, and simulated annealing. Digit. Signal Process. 2013, 23, 879–893. [Google Scholar] [CrossRef]
- Liu, B.; Meng, P. Simulated annealing-based ant colony algorithm for traveling salesman problems. J. Huazhong Univ. Sci. Technol. 2009, 37, 26–30. [Google Scholar]
- Mohsen, A.M. Annealing Ant Colony Optimization with Mutation Operator for Solving TSP. Comput. Intell. Neurosci. 2016, 2016, 1–13. [Google Scholar] [CrossRef]
- Mazal, J.; Stodola, P. Applying the ant colony optimisation algorithm to the capacitated multi-depot vehicle routing problem. Int. J. Bio-Inspired Comput. 2016, 8, 228. [Google Scholar] [CrossRef]
- Discrete and Combinatorial Optimization. Available online: http://comopt.ifi.uni-heidelberg.de/software/TSPLIB95/tsp/ (accessed on 30 June 2020).
- Wang, Y.; Gao, S.; Todo, Y. Ant colony systems for optimization problems in dynamic environments. In Swarm Intelligence—Volume 1: Principles, Current Algorithms and Methods; The Institution of Engineering and Technology: London, UK, 2018. [Google Scholar]
- Skinderowicz, R. Implementing Population-Based ACO. In Proceedings of the International Conference on Computational Collective Intelligence, Seoul, Korea, 23–26 September 2014; pp. 603–612. [Google Scholar]
- Ma, Z.B.; Liu, L.T.; Sukhatme, G.S. An Adaptive k-opt Method for Solving Traveling Salesman Problem. In Proceedings of the IEEE Conference on Decision and Control, Las Vegas, NV, USA, 12–14 December 2016. [Google Scholar]
- Bentley, J.J. Fast Algorithms for Geometric Traveling Salesman Problems. INFORMS J. Comput. 1992, 4, 387–411. [Google Scholar] [CrossRef]
© 2020 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (http://creativecommons.org/licenses/by/4.0/).