SlideShare a Scribd company logo
1 of 12
Download to read offline
Algorithms and Optimization Techniques for Solving TSP
Raiyan Mahbub
mahbu006@umn.edu
University of Minnesota
December 21, 2020
Abstract
The traveling salesman problem (TSP) is one of the most extensively studied optimization problems
in the computer science and computational mathematics field given that there is yet an optimal solu-
tion for it to be discovered. This algorithmic problem asks that if we are given a list of n places and
the distances between each pair, what is the shortest possible route that visits each city exactly once
and returns to its initial starting point. In this paper, we will be conducting a comparative study to
test and evaluate the performance of three algorithms: Simulated Annealing, Ant Colony Optimization,
and Genetic Algorithm. With the traveling salesman problem classifying under NP-hard computational
complexity, we will be examining the runtime as well as the shortest distance computed by each of these
algorithms by setting up analogous environments of n cities.
1 Introduction
One of the most critical tasks of engineers and scientists around the world is to perpetually pursue the
concept of optimization. Whether that being to design more efficient and effective systems, or generate cost-
effective methods to improve scalability, scholars are constantly looking for ways to achieve optimality by
devising and developing techniques to improve the operations of systems in various fields. This includes the
conventional traveling salesman problem (TSP) which is an NP-hard problem in combinatorial optimization
vastly studied in algorithms and operational research. This well known algorithmic problem asks: given a
list of n cities and the distances between each pair of cities, what is the most efficient (i.e. shortest possible
route) that visits each city exactly once and returns to its initial starting point. The pure simplicity of
this problem is quite deceptive as TSP is one of the most extensively studied optimization problems in the
computer science and computational mathematics field.
To emphasize the intricacy of the TSP, let us suppose we were visiting the minuscule country of Mal-
dives. Suppose we wanted to determine the most optimal path to travel to every city in Maldives (they
have approximately 30) and frame it as a TSP. To compute all of the paths between them, the possible
combinations of visiting all sequences of cities is 30! or 2.65 Ă— 1032
. To put this unfathomable number into
perspective, if we were to try every possible combination and test 10, 000 sequences per second, it would take
modern computers over 8 million years to observe the solution. The intriguing traveling salesman problem
was first introduced in 1930, and a wide variety of applications stemmed from it. It gradually became a
benchmark for countless other optimization problems and started appearing as real life applications such as:
arranging bus routes to pick up passengers, scheduling a machine to drill holes in a circuit board, radiation
hybrid maps in genome sequencing, etc. An optimal solution for TSP has yet to be discovered, however
some intricate non-optimal solutions have approached optimality with a fast runtime.
1
2 Literature Review
2.1 Overview
In this literature review, we will explore common algorithms that have been used to solve TSP from
scientific journals and articles and analyze the distinct approaches and their corresponding metrics. While
being a classical combinatorial optimatization problem, TSP has an vast search space and cannot be solved
in polynomial time, or NP-hard. In particular, we will examine a genetic algorithm with modified cycle
crossover operator, the nearest neighbor algorithm, and the traditional greedy algorithm, and several more
approaches for solving TSP. We will also be investigating into what specific qualities make TSP to become
an NP-hard problem and briefly explore computational complexity theory.
2.2 Genetic Algorithm
The traveling salesman problem is one of the most fundamental problems in the field of computer sci-
ence and optimization in modern research. According to Sangwan in [11],there are countless applications
of TSP such as: printed circuit board drilling, manufacturing of microchips, packet routing in mobile com-
munications, vehicle routing, etc. Many different algorithms and heuristic techniques have been utilized to
determine an efficient solution to TSP, but as the number of nodes increase, the computation becomes quite
complex. For instance in [2], Hussain, et al examine the genetic algorithms, or GAs, which is essentially a
search heuristic derived from the concept of Darwinism and the theory of natural evolution. This algorithm
fundamentally reflects the process of survival of the fittest, where the best individuals of each generation are
selected for reproduction. Thus, the next generation should be healthier and fitter than its prior one. The
authors propose in [2] a new crossover operator for the traveling salesman problem to minimize the distance
traveled. They argue that the most natural way to represent a legal tour is by using an approach connected
with path representation. After running various forms of tests with different selection criteria, crossover and
mutation operators, they were able to determine that the CX2 operator performs significantly better than
PMX and OX.
2.3 Nearest Neighbor and Greedy Algorithms
Regarding the study done by Kizilates and Nuriyeva in [7], the authors researched a modified version
of the nearest neighbor algorithm for TSP. This algorithm follows the steps outlined: first a random city is
selected, then it finds the nearest unvisited city and travels there. It then checks if there are any unvisited
cities left and if goes there. If not, it returns back to the original city where it started from. The modification
made in this study was that they utilized greedy algorithms from different endpoints as well as the nearest
neighbor. After running multiple computational experiments in [7], Kizilates and Nuriyeva demonstrated
that this hybrid algorithm is indeed efficient on well-known library problems. The last article done by Ejim
[4], is on how greedy algorithms themselves can be applied to TSP. A greedy algorithm essentially makes the
locally optimal selection at each stage of the algorithm hoping to find the optimum. While this algorithm
may not always be the most effective nor the most efficient, it could in a reasonable time possibly yield
locally optimal solutions which could approximate the globally optimal solution. After running a profile on
their tests, they found that the time complexity was exponential and the time needed to run the algorithm
increased significantly as the problem size was increased.
2.4 Optimization Methods
We can also observe there are different optimization methods can be applied to the generalized traveling
salesman problem. For instance in [1], Fang, et al. illustrates the particle swarm optimization (PSO) with
simulated annealing in the 6th WSEAS International Conference on Artificial Intelligence. They proposed
2
an advanced PSO algorithm that does not easily become trapped in a local minimum with the addition of
simulated annealing. The SA method is essentially utilized to slow down the degeneration of the PSO swarm
as well as increasing the swarm’s diversity. Based on their comparative experiments, PSO-SA was distinctly
superior compared to the conventional genetic algorithm, basic simulated annealing, and the adaptive cross
approximation algorithm to solve the TSP. Another optimization used for solving the generalized TSP is
the ant colony method presented by Yang, et al. in [12]. They primarily focused on a variation of the
euclidean TSP and they were searching for techniques to avoid locking into a local minimum similar to [1].
They introduced a mutation process and local searching algorithm derived from observing real ants who are
capable of finding the shortest path from a food source to their nest without the need for visual cues through
probability techniques.
2.5 Computational Complexity Theory
Looking into what qualities make a problem NP-hard, Paschos effectively conveys it in [10] as that no
polynomial algorithm can really be devised for an optimal solving of any NP-hard problems. However, this
intricacy robustly motivates both practitioners and researchers to attempts to solve these problems heuristi-
cally. This inherently creates a trade-off between computational time and the quality of the optimal solution.
This polynomial approximation theory deals with solving a given NP-hard problems in polynomial time by
computing feasible solutions as close to optimal as possible under some predefined criterion. Examining
from a broader context, we have to look at computational complexity theory which is a central field of the
theoretical foundations of the computer science field. Goldreich in [5] defines this theory with the study of
the intrinsic complexity of computational tasks. More specifically, their studies refer to the computational
resources that are required to solve a computational class of tasks such as the traveling salesman problem.
The theory additionally looks at what tasks can be achieved with either limited time and limited computa-
tional resources. The traveling salesman problem is an exemplary practical application of the computational
complexity theory as the algorithmic problem is difficult to optimize when the input becomes arbitrarily
large.
3 Approach
3.1 Simulated Annealing
Simulated Annealing (SA) algorithm is a stochastic technique that can be useful for determining the
global optimum. The term ”annealing” stems from a thermodynamic analogy, more specifically the way
that metals cool; SA uses its objective function of an optimization problem rather than the energy of a
material. This materials science parallelism additionally involves the introduction of noise to avoid search
failure due to a local minima or plateau. To enhance or improve the probabilistic odds of determining the
global optimum rather than a sub-optimal local one, a stochastic element to the algorithm is integrated
by simulating Brownian thermal motion. Some forms of this simulated annealing consist of the injection of
randomized numbers with variety of distributions or the averaging effect of mini-batching which is essentially
splitting a batch into segments and performing a slight network parameter adjustment after each iteration.
When applying SA to the TSP, we maintain the temperature to be variable to simulate the said heating
process. While initially leaving it high, we gradually cool it off as the algorithm continues to iterate. The high
temperature will correspond to an increased frequency to which we accept proposed solutions, or shortest
paths to cities in this case, and it will incline towards accepting solutions that are actually worse than our
current ones. This freedom allows the SA algorithm avoid getting stuck in any local optima early on in the
algorithm. However, as said before the temperature is systematically reduced and the chances of accepting
worse solutions decrease as well. Thus, SA eventually maintains focus on a search space that is hopefully
around an optimal solution. This measured cooling process is what will make the application to TSP so
3
effective as we are dealing with a vast search space with an abundance of local optima.
3.2 Ant Colony Algorithm Optimization
The Ant Colony optimization is one of the more popularized meta-heuristics utilized in combinatorial
optimization in which the algorithm seeks an optimal solution in a discrete search space. The Ant Colony
Optimization (ACO) is essentially derived on computations from real ant colonies and how they operate in
nature. An ant’s primary behavior is fundamentally dominated by the goal of the survival of the colony
rather than their own interests. ACO is more specifically based on the keen seeking behavior of ants and
how they are able to quickly find shortest paths between food sources and their temporary homes. When
they are initially searching for a food source, they discover the said aforementioned area through a stochastic
process. While trotting along, each and every ant leaves behind a chemical pheromone trail in the ground
which can be sensed by other ants. The following diagram conveys the process of the ant colonies leaving
behind the scent, and effectively picking it back up after iterations:
Figure 1: Ants use pheromone as indirect communication to build best tour [3]
The next time the colony of ants path towards their food source, they probabilistically select paths
with strong pheromone concentrations. They strengthen these concentrations if the food is perhaps of more
quality or more plentiful as well. These indirect chemical substances have shown that they enable these ant
colonies to locate the shortest path between their homes and food. We will be using this exact approach for
our generalized n-cities traveling salesman problem by exploiting the exploratory and randomness nature of
the algorithm along with increasing the attractiveness of the pheromones to the ants.
3.3 Genetic Algorithm
Genetic algorithms, or GAs, are essentially a search heuristic algorithm derived from the concept of
Darwinism and the theory of natural evolution and development. They are search methods based on the
principles of symbiosis, fitness test, mutation, meiosis, breeding, extermination of insufficiency, and recursion.
The GA initially begins with a wide set of solutions which are denoted by chromosomes called the popula-
tion. The solutions from the single population are kept and are used to breed and form a new population.
Motivated by optimism, the genetic algorithm hopes to retrieve a new generation that will be better and
more optimal than the previous generation. The solutions that are selected by the algorithm are denoted as
the offspring undergo the fitness evaluation function. They are judged accordingly by their fitness attributes,
and the more suitable the offspring, the higher probabilistic chance they will be the parents to form the next
generation and replicate. The pseudocode outlined by Mukhairez, et al. in [9] for the genetic algorithm is
as follows:
1. Generate a randomized population of n chromosomes
2. Evaluate the fitness function for each chromosome x in the current population
4
3. Form a new population with the following until complete:
(a) Select two parent chromosomes from current population according to fitness evaluation
(b) Perform a probabilistic cross-over with the parents to form offspring
(c) Mutate new offspring at each locus, or position in the chromosome
(d) Place new offspring into the newly generated population
4. Use new population for an extended run of the genetic algorithm
5. If end condition is satisfied, terminate procedure and return best solution in current population
6. Iterate beginning from step 2
4 Experimental Design and Results
4.1 Experiment Implementation
To run these experiments for the SA, ACO, and GA algorithms, we utilized two open-source libraries
and repositories from GitHub. The first one being scikit-opt which is a powerful Python library and module
built specifically for heuristic algorithms from [6] to which we deployed the SA and ACO algorithms. For
GA, we used the TSP-GA repository from [8] which used cities in Brazil for its computation. We pro-
ceeded to run several executions of all three of these algorithms through Python from these APIs using both
n = 15 and n = 50 cities. This was implemented through a randomly generated function on a coordinate
plane along with a procedure that computed the shortest distance the algorithms were able to find as follows:
num cities = 15 # number of c i t i e s
points coordinate = numpy . random . rand ( num cities , 2) # generate points
distance matrix = s p a t i a l . distance . c d i s t ( points coordinate ,
points coordinate ,
metric=’ euclidean ’ )
def c a l t o t a l d i s t a n c e ( routine ) :
# the o b j e c t i v e function . input routine , return t o t a l distance .
num cities , = routine . shape
return sum( [ distance matrix [ routine [ i % num cities ] ,
routine [ ( i + 1) % num cities ] ] for i in range( num cities ) ] )
All of the simulations were completed on a i5-8265U processor clocked at 1.60GHz, 1800 MHz with
8 GB of RAM. For the simulated annealing algorithm, we used the parameters of T max = 100 (initial
temperature), T min = 1 (end temperature), L = 10 * num cities (iterations under temperature). For the
ant colony optimization algorithm, we tuned the parameters to size population = 50, max iterations = 200,
alpha = 1 (control parameter), beta = 2 (control parameter), rho = 0.1 (pheromone persistence coefficient).
Regarding the genetic algorithm, we focused on utilizing a contrasting data set of 15 cities in Brazil as
this repository was a bit more trivial than the powerful scikit-opt engine for the other algorithms. We the
parameters for GA to: population size = 500, tournament size = 50, mutation rate = 0.02, next gen =
20. For each experiment on these algorithms, we noted the execution time, number of iterations, quality of
results, and captured the visualization of how the shortest paths were formed between the cities.
5
4.2 Results
4.2.1 Simulated Annealing
Trial 1 Trial 2 Trial 3 Average
Total Distance 4.3844 3.3165 4.7013 4.1341
Time (ms) 0.1102 0.1299 0.1165 0.1738
Table 1: Simulated Annealing on TSP (15 cities)
Figure 2: Visual of Iterations and Shortest Path by SA (15 cities)
6
Trial 1 Trial 2 Trial 3 Average
Total Distance 19.7649 21.7478 18.8821 20.1316
Time (ms) 0.1634 0.1599 0.1582 0.1606
Table 2: Simulated Annealing on TSP (50 cities)
Figure 3: Visual of Iterations and Shortest Path by SA (50 cities)
7
4.2.2 Ant Colony Optimization
Trial 1 Trial 2 Trial 3 Average
Total Distance 4.1019 3.7308 3.8979 3.9102
Time (ms) 2.0989 1.3563 1.7627 1.7393
Table 3: Ant Colony Optimization on TSP (15 cities)
Figure 4: Visual of Iterations and Shortest Path by ACO (15 cities)
8
Trial 1 Trial 2 Trial 3 Average
Total Distance 5.8374 6.0392 6.1615 6.0127
Time (ms) 2.2064 2.7092 2.5034 2.2630
Table 4: Ant Colony Optimization on TSP (50 cities)
Figure 5: Visual of Iterations and Shortest Path by ACO (50 cities)
9
4.2.3 Genetic Algorithm
Trial 1 Trial 2 Trial 3 Trial 4 Trial 5 Average
# of Generations 24 29 28 29 27 27.4
Total Distance (km) 1205 1214 1204 1237 1205 1213
Time (sec) 1.1855 1.4546 1.4005 1.4582 1.3658 1.373
Table 5: Genetic Algorithm on TSP (15 cities in Brazil)
Figure 6: Visual of Generations and Shortest Path by GA (15 cities)
10
5 Analysis
Based on our experimental tests and simulations, we can distinctly observe the critical differences be-
tween simulated annealing and ant colony optimization constructed from our current parameters. SA was
considerable faster than ACO in terms of execution time as it was approximately 10.01 times after in n =
15 cities case, and an astonishing 14.09 times faster when n = 50 cities. We also identify that the transfor-
mation from 15 cities to 50 had no palpable effect on SA. However, ACO’s execution time did increase to a
slight extent. Nonetheless, disregarding the execution times for a second, ACO was intelligibly able to find
a shorter path than SA consistently. Although the disparity in the 15 cities study was slight, we see the
significant difference with the addition of 35 more coordinate points.
Taking a closer inspection on the visualization of the cities and how each of the algorithms determined
their optimal shortest path, we see a perceptible difference between the two, particularly in the n = 50 cities
case. The ACO algorithm primarily found the closer to optimal solution taking the perimeter path around
the city. This is most likely due to the high pheromone concentration aspect of the approach as once the
simulated ants determined the shortest distances between cities, they began to prefer that route. However,
in the SA visuals, we notice that the increased amount of path intersections and wasted distance due to
the initial exploration and quick execution time. Regarding the analysis of the Genetic Algorithm data,
given that we utilized a different data set, we will examine this individually. With the current parameters,
we saw the variability with the number of generations as it ranged from 24 to 29. However, the execution
time of all evolutions as well as the minimum traveling cost remained fairly consistent throughout the tests.
The shortest route visuals also followed a perimeter path around the 15 cities similarly to ACO, and the
convergence of all trials was approximately 10 generations.
Thus, we can conclude that ACO can be considered the most suitable algorithm if we are optimizing for
the shortest distance between the n cities at the cost of a high execution time. The SA algorithm would be
appropriate if we are looking for a tremendously fast algorithm with low runtime complexity, but this would
come with the trade-off of getting a less than optimal distance. We can presume that GA would be second
in order in both the execution time and shortest distance if it was handling the same TSP data set, so this
likely won’t be considered for an optimal algorithm by researchers in any aspect. We additionally do have
to acknowledge that all of these algorithms may possibly give varying results due to perhaps the machine
it is running on, or the different parameters and attribute values such as: alpha, beta, initial temperature,
cooling rate, etc.
6 Conclusion and Future Work
In this paper, we extensively studied some modern approaches to the conventional traveling salesman
problem. We additionally presented a qualified study between several optimization techniques including:
simulated annealing, ant colony optimization, and genetic algorithm. Each of these algorithms provided
a contrasting aspects of randomness and probabilistic measures that would bring limitations to the other
algorithms. We concluded that ACO is the most suitable if we are optimizing for the shortest distance, and
SA if we were examining pure execution time and complexity. This comparative study brings up an intriguing
algorithm that could be tested in the future: a modified approach that incorporates both simulated annealing
and the ant colony optimization. With ACO providing the best optimal shortest distance of the three and
SA’s low execution time, it would be compelling to see whether the algorithms complement each other well
or impose their limitations on one another. In terms of future work in this field, there are several fascinating
applications of TSP. For instance, the Hyperloop concept that was proposed by Robert Goddard in 1904
which is essentially a vactrain for passengers and freight transportation that would travel underground free
of air resistance and friction. In order to design the routes of the vactrain efficiently, we would need to
prospectively run algorithms on TSP to determine how it would travel around the United States city to city.
At the core of machine learning and artificial intelligence lie the notion of optimization problems. As science
and machines continue to advance in their fields, we hope to see the traveling salesman problem be solved
optimally in the near future.
11
References
[1] Particle swarm optimization with simulated annealing for TSP, volume 6 of AIKED’07: Proceedings of
the 6th Conference on 6th WSEAS International Conference on Artificial Intelligence, Corfu Island,
Greece, 2007.
[2] Sajid I. Hussain Shoukry Gani A. Hussain, Muhammad. Genetic algorithm for traveling salesman
problem with modified cycle crossover operator. Computational Intelligence and Neuroscience,
2017(13):7, 2017.
[3] M. Alhanjouri and Belal Alfarra. Ant colony versus genetic algorithm based on travelling salesman
problem. 2013.
[4] Samson Ejim. Implementation of greedy algorithm in traveling salesman problem. 09 2016.
[5] Oded Goldreich. Computational complexity: A conceptual perspective. SIGACT News, 39(3):35–39,
September 2008.
[6] gu0fei9987. scikit-opt. https://github.com/guofei9987/scikit-opt, 2020.
[7] Gozde Kizilates and Fidan Nuriyeva. On the nearest neighbor algorithms for the traveling salesman
problem. Advances in Intelligent Systems and Computing, 225:111–118, 01 2013.
[8] lccasagrande. Tsp-ga. https://github.com/lccasagrande/TSP-GA, 2018.
[9] Hosam Mukhairez and Ashraf Maghari. Performance comparison of simulated annealing, ga and aco
applied to tsp. International Journal of Intelligent Computing Research (IJICR), Volume 6:647 – 654,
12 2015.
[10] V. Paschos. An overview on polynomial approximation of np-hard problems. Yugoslav Journal of
Operations Research, 19:3–40, 2009.
[11] Shabnam Sangwan. Literature review on travelling salesman problem. International Journal of
Research, 5:1152, 06 2018.
[12] Jinhui Yang, Xiaohu Shi, Maurizio Marchese, and Yanchun Liang. An ant colony optimization method
for generalized tsp problem. Progress in Natural Science, 18(11):1417 – 1422, 2008.
12

More Related Content

Similar to Algorithms And Optimization Techniques For Solving TSP

With saloni in ijarcsse
With saloni in ijarcsseWith saloni in ijarcsse
With saloni in ijarcssesatish rana
 
Hybrid iterated local search algorithm for optimization route of airplane tr...
Hybrid iterated local search algorithm for optimization route of  airplane tr...Hybrid iterated local search algorithm for optimization route of  airplane tr...
Hybrid iterated local search algorithm for optimization route of airplane tr...IJECEIAES
 
Travelling Salesman Problem using Partical Swarm Optimization
Travelling Salesman Problem using Partical Swarm OptimizationTravelling Salesman Problem using Partical Swarm Optimization
Travelling Salesman Problem using Partical Swarm OptimizationIlgın Kavaklıoğulları
 
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...cscpconf
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...csandit
 
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...ijmpict
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
final seminar
final seminarfinal seminar
final seminarAMIT KUMAR
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmIJMIT JOURNAL
 
NON - EUCLIDEAN METRIC AND PATH PLANNING
NON - EUCLIDEAN METRIC AND PATH PLANNINGNON - EUCLIDEAN METRIC AND PATH PLANNING
NON - EUCLIDEAN METRIC AND PATH PLANNINGIJCSES Journal
 
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony OptimizationA Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony OptimizationIRJET Journal
 
Ijarcet vol-2-issue-2-352-358
Ijarcet vol-2-issue-2-352-358Ijarcet vol-2-issue-2-352-358
Ijarcet vol-2-issue-2-352-358Editor IJARCET
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsXin-She Yang
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...Editor IJCATR
 
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems Navodaya Institute of Technology
 
AbstractWe design an software to find optimal(shortest) path .docx
AbstractWe design an software to find optimal(shortest) path .docxAbstractWe design an software to find optimal(shortest) path .docx
AbstractWe design an software to find optimal(shortest) path .docxaryan532920
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmIJMIT JOURNAL
 

Similar to Algorithms And Optimization Techniques For Solving TSP (20)

With saloni in ijarcsse
With saloni in ijarcsseWith saloni in ijarcsse
With saloni in ijarcsse
 
Hybrid iterated local search algorithm for optimization route of airplane tr...
Hybrid iterated local search algorithm for optimization route of  airplane tr...Hybrid iterated local search algorithm for optimization route of  airplane tr...
Hybrid iterated local search algorithm for optimization route of airplane tr...
 
Travelling Salesman Problem using Partical Swarm Optimization
Travelling Salesman Problem using Partical Swarm OptimizationTravelling Salesman Problem using Partical Swarm Optimization
Travelling Salesman Problem using Partical Swarm Optimization
 
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
A STUDY AND IMPLEMENTATION OF THE TRANSIT ROUTE NETWORK DESIGN PROBLEM FOR A ...
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...
 
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
A NEW APPROACH IN DYNAMIC TRAVELING SALESMAN PROBLEM: A HYBRID OF ANT COLONY ...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
final seminar
final seminarfinal seminar
final seminar
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithm
 
50120140503004
5012014050300450120140503004
50120140503004
 
NON - EUCLIDEAN METRIC AND PATH PLANNING
NON - EUCLIDEAN METRIC AND PATH PLANNINGNON - EUCLIDEAN METRIC AND PATH PLANNING
NON - EUCLIDEAN METRIC AND PATH PLANNING
 
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony OptimizationA Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
A Survey of Solving Travelling Salesman Problem using Ant Colony Optimization
 
Ijarcet vol-2-issue-2-352-358
Ijarcet vol-2-issue-2-352-358Ijarcet vol-2-issue-2-352-358
Ijarcet vol-2-issue-2-352-358
 
Firefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and ApplicationsFirefly Algorithm: Recent Advances and Applications
Firefly Algorithm: Recent Advances and Applications
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...
Proposing a New Job Scheduling Algorithm in Grid Environment Using a Combinat...
 
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems
A Simple Method for Solving Type-2 and Type-4 Fuzzy Transportation Problems
 
AbstractWe design an software to find optimal(shortest) path .docx
AbstractWe design an software to find optimal(shortest) path .docxAbstractWe design an software to find optimal(shortest) path .docx
AbstractWe design an software to find optimal(shortest) path .docx
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithm
 
Optimal combination of operators in Genetic Algorithmsfor VRP problems
Optimal combination of operators in Genetic Algorithmsfor VRP problemsOptimal combination of operators in Genetic Algorithmsfor VRP problems
Optimal combination of operators in Genetic Algorithmsfor VRP problems
 

More from Carrie Romero

Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5
Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5
Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5Carrie Romero
 
Introduction Template For Report - Professional Tem
Introduction Template For Report - Professional TemIntroduction Template For Report - Professional Tem
Introduction Template For Report - Professional TemCarrie Romero
 
Transition In Essay Writing - Paragraph Transitions
Transition In Essay Writing - Paragraph TransitionsTransition In Essay Writing - Paragraph Transitions
Transition In Essay Writing - Paragraph TransitionsCarrie Romero
 
How To Help Students Brainstorm And Organize An Essay
How To Help Students Brainstorm And Organize An EssayHow To Help Students Brainstorm And Organize An Essay
How To Help Students Brainstorm And Organize An EssayCarrie Romero
 
Quality Management Essay
Quality Management EssayQuality Management Essay
Quality Management EssayCarrie Romero
 
Essay On Helping Others In English 10 Lines Essay O
Essay On Helping Others In English 10 Lines Essay OEssay On Helping Others In English 10 Lines Essay O
Essay On Helping Others In English 10 Lines Essay OCarrie Romero
 
Buy Essays Cheap Review - Resumverlet
Buy Essays Cheap Review - ResumverletBuy Essays Cheap Review - Resumverlet
Buy Essays Cheap Review - ResumverletCarrie Romero
 
RESEARCH PAPER WRITERS CAN HELP Y
RESEARCH PAPER WRITERS CAN HELP YRESEARCH PAPER WRITERS CAN HELP Y
RESEARCH PAPER WRITERS CAN HELP YCarrie Romero
 
Beautiful Beloved Essay Thatsnotus
Beautiful Beloved Essay ThatsnotusBeautiful Beloved Essay Thatsnotus
Beautiful Beloved Essay ThatsnotusCarrie Romero
 
CRITICAL ANALYSIS
CRITICAL ANALYSISCRITICAL ANALYSIS
CRITICAL ANALYSISCarrie Romero
 
Essay Benefits Of Reading Spm Teleg
Essay Benefits Of Reading Spm TelegEssay Benefits Of Reading Spm Teleg
Essay Benefits Of Reading Spm TelegCarrie Romero
 
Templates Writing Paper Template, Writing Paper, Ki
Templates Writing Paper Template, Writing Paper, KiTemplates Writing Paper Template, Writing Paper, Ki
Templates Writing Paper Template, Writing Paper, KiCarrie Romero
 
Buy College Essays. Essa
Buy College Essays. EssaBuy College Essays. Essa
Buy College Essays. EssaCarrie Romero
 
HSC Essay Plans For Questions On The National S
HSC Essay Plans For Questions On The National SHSC Essay Plans For Questions On The National S
HSC Essay Plans For Questions On The National SCarrie Romero
 
Essay About Importance Of Le
Essay About Importance Of LeEssay About Importance Of Le
Essay About Importance Of LeCarrie Romero
 
1 3 1 Essay Example - Lawwustl.Web.Fc2.Com
1 3 1 Essay Example - Lawwustl.Web.Fc2.Com1 3 1 Essay Example - Lawwustl.Web.Fc2.Com
1 3 1 Essay Example - Lawwustl.Web.Fc2.ComCarrie Romero
 
What Color Resume Paper Should You Use Prepar
What Color Resume Paper Should You Use PreparWhat Color Resume Paper Should You Use Prepar
What Color Resume Paper Should You Use PreparCarrie Romero
 
Munchkin Land Kindergarten Kid Writing P
Munchkin Land Kindergarten Kid Writing PMunchkin Land Kindergarten Kid Writing P
Munchkin Land Kindergarten Kid Writing PCarrie Romero
 
Sample Informative Speech Outline On Caf
Sample Informative Speech Outline On CafSample Informative Speech Outline On Caf
Sample Informative Speech Outline On CafCarrie Romero
 
Top Websites To Get Free Essays Online CustomEs
Top Websites To Get Free Essays Online CustomEsTop Websites To Get Free Essays Online CustomEs
Top Websites To Get Free Essays Online CustomEsCarrie Romero
 

More from Carrie Romero (20)

Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5
Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5
Paper Mate Write Bros Comfort 0.7Mm Mechanical Pencil - 5
 
Introduction Template For Report - Professional Tem
Introduction Template For Report - Professional TemIntroduction Template For Report - Professional Tem
Introduction Template For Report - Professional Tem
 
Transition In Essay Writing - Paragraph Transitions
Transition In Essay Writing - Paragraph TransitionsTransition In Essay Writing - Paragraph Transitions
Transition In Essay Writing - Paragraph Transitions
 
How To Help Students Brainstorm And Organize An Essay
How To Help Students Brainstorm And Organize An EssayHow To Help Students Brainstorm And Organize An Essay
How To Help Students Brainstorm And Organize An Essay
 
Quality Management Essay
Quality Management EssayQuality Management Essay
Quality Management Essay
 
Essay On Helping Others In English 10 Lines Essay O
Essay On Helping Others In English 10 Lines Essay OEssay On Helping Others In English 10 Lines Essay O
Essay On Helping Others In English 10 Lines Essay O
 
Buy Essays Cheap Review - Resumverlet
Buy Essays Cheap Review - ResumverletBuy Essays Cheap Review - Resumverlet
Buy Essays Cheap Review - Resumverlet
 
RESEARCH PAPER WRITERS CAN HELP Y
RESEARCH PAPER WRITERS CAN HELP YRESEARCH PAPER WRITERS CAN HELP Y
RESEARCH PAPER WRITERS CAN HELP Y
 
Beautiful Beloved Essay Thatsnotus
Beautiful Beloved Essay ThatsnotusBeautiful Beloved Essay Thatsnotus
Beautiful Beloved Essay Thatsnotus
 
CRITICAL ANALYSIS
CRITICAL ANALYSISCRITICAL ANALYSIS
CRITICAL ANALYSIS
 
Essay Benefits Of Reading Spm Teleg
Essay Benefits Of Reading Spm TelegEssay Benefits Of Reading Spm Teleg
Essay Benefits Of Reading Spm Teleg
 
Templates Writing Paper Template, Writing Paper, Ki
Templates Writing Paper Template, Writing Paper, KiTemplates Writing Paper Template, Writing Paper, Ki
Templates Writing Paper Template, Writing Paper, Ki
 
Buy College Essays. Essa
Buy College Essays. EssaBuy College Essays. Essa
Buy College Essays. Essa
 
HSC Essay Plans For Questions On The National S
HSC Essay Plans For Questions On The National SHSC Essay Plans For Questions On The National S
HSC Essay Plans For Questions On The National S
 
Essay About Importance Of Le
Essay About Importance Of LeEssay About Importance Of Le
Essay About Importance Of Le
 
1 3 1 Essay Example - Lawwustl.Web.Fc2.Com
1 3 1 Essay Example - Lawwustl.Web.Fc2.Com1 3 1 Essay Example - Lawwustl.Web.Fc2.Com
1 3 1 Essay Example - Lawwustl.Web.Fc2.Com
 
What Color Resume Paper Should You Use Prepar
What Color Resume Paper Should You Use PreparWhat Color Resume Paper Should You Use Prepar
What Color Resume Paper Should You Use Prepar
 
Munchkin Land Kindergarten Kid Writing P
Munchkin Land Kindergarten Kid Writing PMunchkin Land Kindergarten Kid Writing P
Munchkin Land Kindergarten Kid Writing P
 
Sample Informative Speech Outline On Caf
Sample Informative Speech Outline On CafSample Informative Speech Outline On Caf
Sample Informative Speech Outline On Caf
 
Top Websites To Get Free Essays Online CustomEs
Top Websites To Get Free Essays Online CustomEsTop Websites To Get Free Essays Online CustomEs
Top Websites To Get Free Essays Online CustomEs
 

Recently uploaded

Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)Dr. Mazin Mohamed alkathiri
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 

Recently uploaded (20)

Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 

Algorithms And Optimization Techniques For Solving TSP

  • 1. Algorithms and Optimization Techniques for Solving TSP Raiyan Mahbub mahbu006@umn.edu University of Minnesota December 21, 2020 Abstract The traveling salesman problem (TSP) is one of the most extensively studied optimization problems in the computer science and computational mathematics field given that there is yet an optimal solu- tion for it to be discovered. This algorithmic problem asks that if we are given a list of n places and the distances between each pair, what is the shortest possible route that visits each city exactly once and returns to its initial starting point. In this paper, we will be conducting a comparative study to test and evaluate the performance of three algorithms: Simulated Annealing, Ant Colony Optimization, and Genetic Algorithm. With the traveling salesman problem classifying under NP-hard computational complexity, we will be examining the runtime as well as the shortest distance computed by each of these algorithms by setting up analogous environments of n cities. 1 Introduction One of the most critical tasks of engineers and scientists around the world is to perpetually pursue the concept of optimization. Whether that being to design more efficient and effective systems, or generate cost- effective methods to improve scalability, scholars are constantly looking for ways to achieve optimality by devising and developing techniques to improve the operations of systems in various fields. This includes the conventional traveling salesman problem (TSP) which is an NP-hard problem in combinatorial optimization vastly studied in algorithms and operational research. This well known algorithmic problem asks: given a list of n cities and the distances between each pair of cities, what is the most efficient (i.e. shortest possible route) that visits each city exactly once and returns to its initial starting point. The pure simplicity of this problem is quite deceptive as TSP is one of the most extensively studied optimization problems in the computer science and computational mathematics field. To emphasize the intricacy of the TSP, let us suppose we were visiting the minuscule country of Mal- dives. Suppose we wanted to determine the most optimal path to travel to every city in Maldives (they have approximately 30) and frame it as a TSP. To compute all of the paths between them, the possible combinations of visiting all sequences of cities is 30! or 2.65 Ă— 1032 . To put this unfathomable number into perspective, if we were to try every possible combination and test 10, 000 sequences per second, it would take modern computers over 8 million years to observe the solution. The intriguing traveling salesman problem was first introduced in 1930, and a wide variety of applications stemmed from it. It gradually became a benchmark for countless other optimization problems and started appearing as real life applications such as: arranging bus routes to pick up passengers, scheduling a machine to drill holes in a circuit board, radiation hybrid maps in genome sequencing, etc. An optimal solution for TSP has yet to be discovered, however some intricate non-optimal solutions have approached optimality with a fast runtime. 1
  • 2. 2 Literature Review 2.1 Overview In this literature review, we will explore common algorithms that have been used to solve TSP from scientific journals and articles and analyze the distinct approaches and their corresponding metrics. While being a classical combinatorial optimatization problem, TSP has an vast search space and cannot be solved in polynomial time, or NP-hard. In particular, we will examine a genetic algorithm with modified cycle crossover operator, the nearest neighbor algorithm, and the traditional greedy algorithm, and several more approaches for solving TSP. We will also be investigating into what specific qualities make TSP to become an NP-hard problem and briefly explore computational complexity theory. 2.2 Genetic Algorithm The traveling salesman problem is one of the most fundamental problems in the field of computer sci- ence and optimization in modern research. According to Sangwan in [11],there are countless applications of TSP such as: printed circuit board drilling, manufacturing of microchips, packet routing in mobile com- munications, vehicle routing, etc. Many different algorithms and heuristic techniques have been utilized to determine an efficient solution to TSP, but as the number of nodes increase, the computation becomes quite complex. For instance in [2], Hussain, et al examine the genetic algorithms, or GAs, which is essentially a search heuristic derived from the concept of Darwinism and the theory of natural evolution. This algorithm fundamentally reflects the process of survival of the fittest, where the best individuals of each generation are selected for reproduction. Thus, the next generation should be healthier and fitter than its prior one. The authors propose in [2] a new crossover operator for the traveling salesman problem to minimize the distance traveled. They argue that the most natural way to represent a legal tour is by using an approach connected with path representation. After running various forms of tests with different selection criteria, crossover and mutation operators, they were able to determine that the CX2 operator performs significantly better than PMX and OX. 2.3 Nearest Neighbor and Greedy Algorithms Regarding the study done by Kizilates and Nuriyeva in [7], the authors researched a modified version of the nearest neighbor algorithm for TSP. This algorithm follows the steps outlined: first a random city is selected, then it finds the nearest unvisited city and travels there. It then checks if there are any unvisited cities left and if goes there. If not, it returns back to the original city where it started from. The modification made in this study was that they utilized greedy algorithms from different endpoints as well as the nearest neighbor. After running multiple computational experiments in [7], Kizilates and Nuriyeva demonstrated that this hybrid algorithm is indeed efficient on well-known library problems. The last article done by Ejim [4], is on how greedy algorithms themselves can be applied to TSP. A greedy algorithm essentially makes the locally optimal selection at each stage of the algorithm hoping to find the optimum. While this algorithm may not always be the most effective nor the most efficient, it could in a reasonable time possibly yield locally optimal solutions which could approximate the globally optimal solution. After running a profile on their tests, they found that the time complexity was exponential and the time needed to run the algorithm increased significantly as the problem size was increased. 2.4 Optimization Methods We can also observe there are different optimization methods can be applied to the generalized traveling salesman problem. For instance in [1], Fang, et al. illustrates the particle swarm optimization (PSO) with simulated annealing in the 6th WSEAS International Conference on Artificial Intelligence. They proposed 2
  • 3. an advanced PSO algorithm that does not easily become trapped in a local minimum with the addition of simulated annealing. The SA method is essentially utilized to slow down the degeneration of the PSO swarm as well as increasing the swarm’s diversity. Based on their comparative experiments, PSO-SA was distinctly superior compared to the conventional genetic algorithm, basic simulated annealing, and the adaptive cross approximation algorithm to solve the TSP. Another optimization used for solving the generalized TSP is the ant colony method presented by Yang, et al. in [12]. They primarily focused on a variation of the euclidean TSP and they were searching for techniques to avoid locking into a local minimum similar to [1]. They introduced a mutation process and local searching algorithm derived from observing real ants who are capable of finding the shortest path from a food source to their nest without the need for visual cues through probability techniques. 2.5 Computational Complexity Theory Looking into what qualities make a problem NP-hard, Paschos effectively conveys it in [10] as that no polynomial algorithm can really be devised for an optimal solving of any NP-hard problems. However, this intricacy robustly motivates both practitioners and researchers to attempts to solve these problems heuristi- cally. This inherently creates a trade-off between computational time and the quality of the optimal solution. This polynomial approximation theory deals with solving a given NP-hard problems in polynomial time by computing feasible solutions as close to optimal as possible under some predefined criterion. Examining from a broader context, we have to look at computational complexity theory which is a central field of the theoretical foundations of the computer science field. Goldreich in [5] defines this theory with the study of the intrinsic complexity of computational tasks. More specifically, their studies refer to the computational resources that are required to solve a computational class of tasks such as the traveling salesman problem. The theory additionally looks at what tasks can be achieved with either limited time and limited computa- tional resources. The traveling salesman problem is an exemplary practical application of the computational complexity theory as the algorithmic problem is difficult to optimize when the input becomes arbitrarily large. 3 Approach 3.1 Simulated Annealing Simulated Annealing (SA) algorithm is a stochastic technique that can be useful for determining the global optimum. The term ”annealing” stems from a thermodynamic analogy, more specifically the way that metals cool; SA uses its objective function of an optimization problem rather than the energy of a material. This materials science parallelism additionally involves the introduction of noise to avoid search failure due to a local minima or plateau. To enhance or improve the probabilistic odds of determining the global optimum rather than a sub-optimal local one, a stochastic element to the algorithm is integrated by simulating Brownian thermal motion. Some forms of this simulated annealing consist of the injection of randomized numbers with variety of distributions or the averaging effect of mini-batching which is essentially splitting a batch into segments and performing a slight network parameter adjustment after each iteration. When applying SA to the TSP, we maintain the temperature to be variable to simulate the said heating process. While initially leaving it high, we gradually cool it off as the algorithm continues to iterate. The high temperature will correspond to an increased frequency to which we accept proposed solutions, or shortest paths to cities in this case, and it will incline towards accepting solutions that are actually worse than our current ones. This freedom allows the SA algorithm avoid getting stuck in any local optima early on in the algorithm. However, as said before the temperature is systematically reduced and the chances of accepting worse solutions decrease as well. Thus, SA eventually maintains focus on a search space that is hopefully around an optimal solution. This measured cooling process is what will make the application to TSP so 3
  • 4. effective as we are dealing with a vast search space with an abundance of local optima. 3.2 Ant Colony Algorithm Optimization The Ant Colony optimization is one of the more popularized meta-heuristics utilized in combinatorial optimization in which the algorithm seeks an optimal solution in a discrete search space. The Ant Colony Optimization (ACO) is essentially derived on computations from real ant colonies and how they operate in nature. An ant’s primary behavior is fundamentally dominated by the goal of the survival of the colony rather than their own interests. ACO is more specifically based on the keen seeking behavior of ants and how they are able to quickly find shortest paths between food sources and their temporary homes. When they are initially searching for a food source, they discover the said aforementioned area through a stochastic process. While trotting along, each and every ant leaves behind a chemical pheromone trail in the ground which can be sensed by other ants. The following diagram conveys the process of the ant colonies leaving behind the scent, and effectively picking it back up after iterations: Figure 1: Ants use pheromone as indirect communication to build best tour [3] The next time the colony of ants path towards their food source, they probabilistically select paths with strong pheromone concentrations. They strengthen these concentrations if the food is perhaps of more quality or more plentiful as well. These indirect chemical substances have shown that they enable these ant colonies to locate the shortest path between their homes and food. We will be using this exact approach for our generalized n-cities traveling salesman problem by exploiting the exploratory and randomness nature of the algorithm along with increasing the attractiveness of the pheromones to the ants. 3.3 Genetic Algorithm Genetic algorithms, or GAs, are essentially a search heuristic algorithm derived from the concept of Darwinism and the theory of natural evolution and development. They are search methods based on the principles of symbiosis, fitness test, mutation, meiosis, breeding, extermination of insufficiency, and recursion. The GA initially begins with a wide set of solutions which are denoted by chromosomes called the popula- tion. The solutions from the single population are kept and are used to breed and form a new population. Motivated by optimism, the genetic algorithm hopes to retrieve a new generation that will be better and more optimal than the previous generation. The solutions that are selected by the algorithm are denoted as the offspring undergo the fitness evaluation function. They are judged accordingly by their fitness attributes, and the more suitable the offspring, the higher probabilistic chance they will be the parents to form the next generation and replicate. The pseudocode outlined by Mukhairez, et al. in [9] for the genetic algorithm is as follows: 1. Generate a randomized population of n chromosomes 2. Evaluate the fitness function for each chromosome x in the current population 4
  • 5. 3. Form a new population with the following until complete: (a) Select two parent chromosomes from current population according to fitness evaluation (b) Perform a probabilistic cross-over with the parents to form offspring (c) Mutate new offspring at each locus, or position in the chromosome (d) Place new offspring into the newly generated population 4. Use new population for an extended run of the genetic algorithm 5. If end condition is satisfied, terminate procedure and return best solution in current population 6. Iterate beginning from step 2 4 Experimental Design and Results 4.1 Experiment Implementation To run these experiments for the SA, ACO, and GA algorithms, we utilized two open-source libraries and repositories from GitHub. The first one being scikit-opt which is a powerful Python library and module built specifically for heuristic algorithms from [6] to which we deployed the SA and ACO algorithms. For GA, we used the TSP-GA repository from [8] which used cities in Brazil for its computation. We pro- ceeded to run several executions of all three of these algorithms through Python from these APIs using both n = 15 and n = 50 cities. This was implemented through a randomly generated function on a coordinate plane along with a procedure that computed the shortest distance the algorithms were able to find as follows: num cities = 15 # number of c i t i e s points coordinate = numpy . random . rand ( num cities , 2) # generate points distance matrix = s p a t i a l . distance . c d i s t ( points coordinate , points coordinate , metric=’ euclidean ’ ) def c a l t o t a l d i s t a n c e ( routine ) : # the o b j e c t i v e function . input routine , return t o t a l distance . num cities , = routine . shape return sum( [ distance matrix [ routine [ i % num cities ] , routine [ ( i + 1) % num cities ] ] for i in range( num cities ) ] ) All of the simulations were completed on a i5-8265U processor clocked at 1.60GHz, 1800 MHz with 8 GB of RAM. For the simulated annealing algorithm, we used the parameters of T max = 100 (initial temperature), T min = 1 (end temperature), L = 10 * num cities (iterations under temperature). For the ant colony optimization algorithm, we tuned the parameters to size population = 50, max iterations = 200, alpha = 1 (control parameter), beta = 2 (control parameter), rho = 0.1 (pheromone persistence coefficient). Regarding the genetic algorithm, we focused on utilizing a contrasting data set of 15 cities in Brazil as this repository was a bit more trivial than the powerful scikit-opt engine for the other algorithms. We the parameters for GA to: population size = 500, tournament size = 50, mutation rate = 0.02, next gen = 20. For each experiment on these algorithms, we noted the execution time, number of iterations, quality of results, and captured the visualization of how the shortest paths were formed between the cities. 5
  • 6. 4.2 Results 4.2.1 Simulated Annealing Trial 1 Trial 2 Trial 3 Average Total Distance 4.3844 3.3165 4.7013 4.1341 Time (ms) 0.1102 0.1299 0.1165 0.1738 Table 1: Simulated Annealing on TSP (15 cities) Figure 2: Visual of Iterations and Shortest Path by SA (15 cities) 6
  • 7. Trial 1 Trial 2 Trial 3 Average Total Distance 19.7649 21.7478 18.8821 20.1316 Time (ms) 0.1634 0.1599 0.1582 0.1606 Table 2: Simulated Annealing on TSP (50 cities) Figure 3: Visual of Iterations and Shortest Path by SA (50 cities) 7
  • 8. 4.2.2 Ant Colony Optimization Trial 1 Trial 2 Trial 3 Average Total Distance 4.1019 3.7308 3.8979 3.9102 Time (ms) 2.0989 1.3563 1.7627 1.7393 Table 3: Ant Colony Optimization on TSP (15 cities) Figure 4: Visual of Iterations and Shortest Path by ACO (15 cities) 8
  • 9. Trial 1 Trial 2 Trial 3 Average Total Distance 5.8374 6.0392 6.1615 6.0127 Time (ms) 2.2064 2.7092 2.5034 2.2630 Table 4: Ant Colony Optimization on TSP (50 cities) Figure 5: Visual of Iterations and Shortest Path by ACO (50 cities) 9
  • 10. 4.2.3 Genetic Algorithm Trial 1 Trial 2 Trial 3 Trial 4 Trial 5 Average # of Generations 24 29 28 29 27 27.4 Total Distance (km) 1205 1214 1204 1237 1205 1213 Time (sec) 1.1855 1.4546 1.4005 1.4582 1.3658 1.373 Table 5: Genetic Algorithm on TSP (15 cities in Brazil) Figure 6: Visual of Generations and Shortest Path by GA (15 cities) 10
  • 11. 5 Analysis Based on our experimental tests and simulations, we can distinctly observe the critical differences be- tween simulated annealing and ant colony optimization constructed from our current parameters. SA was considerable faster than ACO in terms of execution time as it was approximately 10.01 times after in n = 15 cities case, and an astonishing 14.09 times faster when n = 50 cities. We also identify that the transfor- mation from 15 cities to 50 had no palpable effect on SA. However, ACO’s execution time did increase to a slight extent. Nonetheless, disregarding the execution times for a second, ACO was intelligibly able to find a shorter path than SA consistently. Although the disparity in the 15 cities study was slight, we see the significant difference with the addition of 35 more coordinate points. Taking a closer inspection on the visualization of the cities and how each of the algorithms determined their optimal shortest path, we see a perceptible difference between the two, particularly in the n = 50 cities case. The ACO algorithm primarily found the closer to optimal solution taking the perimeter path around the city. This is most likely due to the high pheromone concentration aspect of the approach as once the simulated ants determined the shortest distances between cities, they began to prefer that route. However, in the SA visuals, we notice that the increased amount of path intersections and wasted distance due to the initial exploration and quick execution time. Regarding the analysis of the Genetic Algorithm data, given that we utilized a different data set, we will examine this individually. With the current parameters, we saw the variability with the number of generations as it ranged from 24 to 29. However, the execution time of all evolutions as well as the minimum traveling cost remained fairly consistent throughout the tests. The shortest route visuals also followed a perimeter path around the 15 cities similarly to ACO, and the convergence of all trials was approximately 10 generations. Thus, we can conclude that ACO can be considered the most suitable algorithm if we are optimizing for the shortest distance between the n cities at the cost of a high execution time. The SA algorithm would be appropriate if we are looking for a tremendously fast algorithm with low runtime complexity, but this would come with the trade-off of getting a less than optimal distance. We can presume that GA would be second in order in both the execution time and shortest distance if it was handling the same TSP data set, so this likely won’t be considered for an optimal algorithm by researchers in any aspect. We additionally do have to acknowledge that all of these algorithms may possibly give varying results due to perhaps the machine it is running on, or the different parameters and attribute values such as: alpha, beta, initial temperature, cooling rate, etc. 6 Conclusion and Future Work In this paper, we extensively studied some modern approaches to the conventional traveling salesman problem. We additionally presented a qualified study between several optimization techniques including: simulated annealing, ant colony optimization, and genetic algorithm. Each of these algorithms provided a contrasting aspects of randomness and probabilistic measures that would bring limitations to the other algorithms. We concluded that ACO is the most suitable if we are optimizing for the shortest distance, and SA if we were examining pure execution time and complexity. This comparative study brings up an intriguing algorithm that could be tested in the future: a modified approach that incorporates both simulated annealing and the ant colony optimization. With ACO providing the best optimal shortest distance of the three and SA’s low execution time, it would be compelling to see whether the algorithms complement each other well or impose their limitations on one another. In terms of future work in this field, there are several fascinating applications of TSP. For instance, the Hyperloop concept that was proposed by Robert Goddard in 1904 which is essentially a vactrain for passengers and freight transportation that would travel underground free of air resistance and friction. In order to design the routes of the vactrain efficiently, we would need to prospectively run algorithms on TSP to determine how it would travel around the United States city to city. At the core of machine learning and artificial intelligence lie the notion of optimization problems. As science and machines continue to advance in their fields, we hope to see the traveling salesman problem be solved optimally in the near future. 11
  • 12. References [1] Particle swarm optimization with simulated annealing for TSP, volume 6 of AIKED’07: Proceedings of the 6th Conference on 6th WSEAS International Conference on Artificial Intelligence, Corfu Island, Greece, 2007. [2] Sajid I. Hussain Shoukry Gani A. Hussain, Muhammad. Genetic algorithm for traveling salesman problem with modified cycle crossover operator. Computational Intelligence and Neuroscience, 2017(13):7, 2017. [3] M. Alhanjouri and Belal Alfarra. Ant colony versus genetic algorithm based on travelling salesman problem. 2013. [4] Samson Ejim. Implementation of greedy algorithm in traveling salesman problem. 09 2016. [5] Oded Goldreich. Computational complexity: A conceptual perspective. SIGACT News, 39(3):35–39, September 2008. [6] gu0fei9987. scikit-opt. https://github.com/guofei9987/scikit-opt, 2020. [7] Gozde Kizilates and Fidan Nuriyeva. On the nearest neighbor algorithms for the traveling salesman problem. Advances in Intelligent Systems and Computing, 225:111–118, 01 2013. [8] lccasagrande. Tsp-ga. https://github.com/lccasagrande/TSP-GA, 2018. [9] Hosam Mukhairez and Ashraf Maghari. Performance comparison of simulated annealing, ga and aco applied to tsp. International Journal of Intelligent Computing Research (IJICR), Volume 6:647 – 654, 12 2015. [10] V. Paschos. An overview on polynomial approximation of np-hard problems. Yugoslav Journal of Operations Research, 19:3–40, 2009. [11] Shabnam Sangwan. Literature review on travelling salesman problem. International Journal of Research, 5:1152, 06 2018. [12] Jinhui Yang, Xiaohu Shi, Maurizio Marchese, and Yanchun Liang. An ant colony optimization method for generalized tsp problem. Progress in Natural Science, 18(11):1417 – 1422, 2008. 12