1. Introduction
The traveling salesman problem (TSP) is considered one of the seminal problems in computational mathematics. Considered as part of the Clay Mathematics Institute Millennium Problem with its assertion of
The TSP problem can be described as the following: consider a number of cities which must be visited by a traveling salesman, only once, arriving once and departing once and starting and ending at the same city. Given the pairwise distances between cities, what is the best order in which to visit them, so as to minimize the overall distance traveled?
Mathematically, the equation for the TSP can be given as in Eq. (1):
where
2. Complexity
The complexity of the TSP is still unknown. Using a brute force approach to test each and every tour, for a tour of n cities, it will be (
3. History
The genesis of the TSP problem is difficult to pinpoint. Some literature point to widespread usage since the 1950’s [2], after the 48 state problem posed by Hassler Whitney in the 1930’s induced a lot of interest. The subsequent second world war really ingrained the use of operations research into this domain. An excellent detailed history is given in [3], where TSP is considered as a part of the history of Combinatorial Optimization.
The TSP problem over time has evolved into many different branches, each with different constraints:
Symmetric TSP (STSP) - the basic TSP problem, where the distance between city i and city j is the same as from city j and city i.
Asymmetric TSP (ATSP) - modified TSP, where the distance between city i and city j is not the same as from city j and city i.
Hamiltonian Cycle Problem (HCP) - is a problem where finding if a path in an undirected or directed graph
Sequential Ordering Problem (SOP) - Given a set of n cities and distances for each pair of cities, find a Hamiltonian path from city 1 to city n of minimal length, which takes given precedence constraints (such as requiring some nodes to be visited prior) into account.
Capacitated Vehicle Routing Problem (CVRP) - Given n-1 nodes, 1 depot (with resources) and distances between the nodes, the objective is to satisfy demand at each node using vehicles with identical capacity with the shortest tour.
Case Enough TSP (CETSP) - a problem developed for radio frequency identification (RFID), where close proximity is enough to a node. The objective is to trace the shortest path interlinking the different nodes.
TSP with Neighborhoods (TSPN) - where a collection of
4. Current literature
Linear programming and deterministic methods have been seen as the early solvers, however, intractability of this problem has led to a general decline in these mathematical formulations. Within the past few decades with the rise of computational power, a new branch of algorithms called meta-heuristics generally based on evolutionary dynamics have become more synonymous with solving combinatorial optimization problems. Based around naturally occurring phenomena, these algorithms treat each problem as a black box with the aim of finding feasibly good solutions within acceptable space and time constraints. A vast repository of literature exists for the TSP problem, and the TSP Library is an excellent starting off resource point [4].
4.1 Deterministic approaches
Some of the latest literature on the TSP problem is divided into three components. The first is the exact and approximation algorithms, which try and produced efficient and reasonably good quality solutions. Some of the latest approaches are given below.
4.2 Evolutionary approaches
The second aspect is evolutionary algorithms. A vast number of these algorithms are now in existence and have been applied to the TSP problem from the seminal work on the Ant Colony Optimization by Dorigo and Gambardella [9] to the following current research.
4.3 High performance computing
The third aspect is application based, specifically high-performance computing. With the wider dissemination of parallel computing, especially multi-core and graphic processor unit based approaches, many algorithms have been parrallized. Some of the latest approaches from literature is given as:
5. Future direction
Even though a number of problems, especially in the combinatorial and scheduling domain have increased over the past decade, the TSP problem have remained a vital area of research. This is primarily for it being generally equated to the intractably quandary of