NAG FL Interface
h03bbf (tsp_​simann)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

h03bbf calculates an approximate solution to a symmetric travelling salesman problem using simulated annealing via a configuration free interface.

2 Specification

Fortran Interface
Subroutine h03bbf ( nc, dm, bound, targc, path, cost, tmode, alg_stats, state, ifail)
Integer, Intent (In) :: nc
Integer, Intent (Inout) :: state(*), ifail
Integer, Intent (Out) :: path(nc), tmode
Real (Kind=nag_wp), Intent (In) :: dm(nc,nc), bound, targc
Real (Kind=nag_wp), Intent (Out) :: cost, alg_stats(6)
C Header Interface
#include <nag.h>
void  h03bbf_ (const Integer *nc, const double dm[], const double *bound, const double *targc, Integer path[], double *cost, Integer *tmode, double alg_stats[], Integer state[], Integer *ifail)
The routine may be called by the names h03bbf or nagf_mip_tsp_simann.

3 Description

h03bbf provides a probabilistic strategy for the calculation of a near optimal path through a symmetric and fully connected distance matrix; that is, a matrix for which element (i,j) is the pairwise distance (also called the cost, or weight) between nodes (cities) i and j. This problem is better known as the Travelling Salesman Problem (TSP), and symmetric means that the distance to travel between two cities is independent of which is the destination city.
In the classical TSP, which this routine addresses, a salesman wishes to visit a given set of cities once only by starting and finishing in a home city and travelling the minimum total distance possible. It is one of the most intensively studied problems in computational mathematics and, as a result, has developed some fairly sophisticated techniques for getting near-optimal solutions for large numbers of cities. h03bbf adopts a very simple approach to try to find a reasonable solution, for moderately large problems. The routine uses simulated annealing: a stochastic mechanical process in which the heating and controlled cooling of a material is used to optimally refine its molecular structure.
The material in the TSP is the distance matrix and a given state is represented by the order in which each city is visited—the path. This system can move from one state to a neighbouring state by selecting two cities on the current path at random and switching their places; the order of the cities in the path between the switched cities is then reversed. The cost of a state is the total cost of traversing its path; the resulting difference in cost between the current state and this new proposed state is called the delta; a negative delta indicates the proposal creates a more optimal path and a positive delta a less optimal path. The random selection of cities to switch uses random number generators (RNGs) from Chapter G05; it is thus necessary to initialize a state array for the RNG of choice (by a call to g05kff or g05kgf) prior to calling h03bbf.
The simulation itself is executed in two stages. In the first stage, a series of sample searches through the distance matrix is conducted where each proposed new state is accepted, regardless of the change in cost (delta) incurred by applying the switches, and statistics on the set of deltas are recorded. These metrics are updated after each such sample search; the number of these searches and the number of switches applied in each search is dependent on the number of cities. The final collated set of metrics for the deltas obtained by the first stage are used as control parameters for the second stage. If no single improvement in cost is found during the first stage, the algorithm is terminated.
In the second stage, as before, neighbouring states are proposed. If the resulting delta is negative or causes no change the proposal is accepted and the path updated; otherwise moves are accepted based on a probabilistic criterion, a modified version of the Metropolis–Hastings algorithm.
The acceptance of some positive deltas (increased cost) reduces the probability of a solution getting trapped at a non-optimal solution where any single switch causes an increase in cost. Initially the acceptance criteria allow for relatively large positive deltas, but as the number of proposed changes increases, the criteria become more stringent, allowing fewer positive deltas of smaller size to be accepted; this process is, within the realm of the simulated annealing algorithm, referred to as ‘cooling’. Further exploration of the system is initially encouraged by accepting non-optimal routes, but is increasingly discouraged as the process continues.
The second stage will terminate when:

4 References

Applegate D L, Bixby R E, Chvátal V and Cook W J (2006) The Traveling Salesman Problem: A Computational Study Princeton University Press
Cook W J (2012) In Pursuit of the Traveling Salesman Princeton University Press
Johnson D S and McGeoch L A The traveling salesman problem: A case study in local optimization Local search in combinatorial optimization (1997) 215–310
Press W H, Teukolsky S A, Vetterling W T and Flannery B P (2007) Numerical Recipes The Art of Scientific Computing (3rd Edition)
Rego C, Gamboa D, Glover F and Osterman C (2011) Traveling salesman problem heuristics: leading methods, implementations and latest advances European Journal of Operational Research 211 (3) 427–441
Reinelt G (1994) The Travelling Salesman. Computational Solutions for TSP Applications, Volume 840 of Lecture Notes in Computer Science Springer–Verlag, Berlin Heidelberg New York

5 Arguments

1: nc Integer Input
On entry: the number of cities. In the trivial cases nc=1, 2 or 3, the routine returns the optimal solution immediately with tmode=0 (provided the relevant distance matrix entries are not negative).
Constraint: nc1.
2: dm(nc,nc) Real (Kind=nag_wp) array Input
On entry: the distance matrix; each dm(i,j) is the effective cost or weight between nodes i and j. Only the strictly upper half of the matrix is referenced.
Constraint: dm(i,j)0.0, for j=2,3,,nc and i=1,2,,j-1.
3: bound Real (Kind=nag_wp) Input
On entry: a lower bound on the solution. If the optimum is unknown set bound to zero or a negative value; the routine will then calculate the minimum spanning tree for dm and use this as a lower bound (returned in alg_stats(6)). If an optimal value for the cost is known then this should be used for the lower bound. A detailed discussion of relaxations for lower bounds, including the minimal spanning tree, can be found in Reinelt (1994).
4: targc Real (Kind=nag_wp) Input
On entry: a measure of how close an approximation needs to be to the lower bound. The routine terminates when a cost is found less than or equal to bound+targc. This argument is useful when an optimal value for the cost is known and supplied in bound. It may be sufficient to obtain a path that is close enough (in terms of cost) to the optimal path; this allows the algorithm to terminate at that point and avoid further computation in attempting to find a better path.
If targc<0, targc=0 is assumed.
5: path(nc) Integer array Output
On exit: the best path discovered by the simulation. That is, path contains the city indices in path order. If ifail0 on exit, path contains the indices 1 to nc.
6: cost Real (Kind=nag_wp) Output
On exit: the cost or weight of path. If ifail0 on exit, cost contains the largest model real number (see x02blf).
7: tmode Integer Output
On exit: the termination mode of the routine (if ifail0 on exit, tmode is set to −1):
tmode=0
Optimal solution found, cost=bound.
tmode=1
System temperature cooled. The algorithm returns a path and associated cost that does not attain, nor lie within targc of, the bound. This could be a sufficiently good approximation to the optimal path, particularly when bound+targc lies below the optimal cost.
tmode=2
Halted by cost falling within the desired targc range of the bound.
tmode=3
System stalled following lack of improvement.
tmode=4
Initial search failed to find a single improvement (the solution could be optimal).
8: alg_stats(6) Real (Kind=nag_wp) array Output
On exit: an array of metrics collected during the initial search. These could be used as a basis for future optimization. If ifail0 on exit, the elements of alg_stats are set to zero; the first five elements are also set to zero in the trival cases nc=1, 2 or 3.
alg_stats(1)
Mean delta.
alg_stats(2)
Standard deviation of deltas.
alg_stats(3)
Cost at end of initial search phase.
alg_stats(4)
Best cost encountered during search phase.
alg_stats(5)
Initial system temperature. At the end of stage 1 of the algorithm, this is a function of the mean and variance of the deltas, and of the distance from best cost to the lower bound. It is a measure of the initial acceptance criteria for stage 2. The larger this value, the more iterations it will take to geometrically reduce it during stage 2 until the system is cooled (below a threshold value).
alg_stats(6)
The lower bound used, which will be that computed internally when bound0 on input. Subsequent calls with different random states can set bound to the value returned in alg_stats(6) to avoid recomputation of the minimal spanning tree.
9: state(*) Integer array Communication Array
Note: the actual argument supplied must be the array state supplied to the initialization routines g05kff or g05kgf.
On entry: a valid RNG state initialized by g05kff or g05kgf. Since the algorithm used is stochastic, a random number generator is employed; if the generator is initialized to a non-repeatable sequence (g05kgf) then different solution paths will be taken on successive runs, returning possibly different final approximate solutions.
On exit: contains updated information on the state of the generator.
10: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, nc=value.
Constraint: nc1.
ifail=2
On entry, the strictly upper triangle of dm had a negative element.
ifail=9
On entry, state vector has been corrupted or not initialized.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The routine will not perform well when the average change in cost caused by switching two cities is small relative to the cost; this can happen when many of the values in the distance matrix are relatively close to each other.
The quality of results from this routine can vary quite markedly when different initial random states are used. It is, therefore, advisable to compute a number of approximations using different initial random states. The best cost and path can then be taken from the set of approximations obtained. If no change in results is obtained after 10 such trials then it is unlikely that any further improvement can be made by this routine.

8 Parallelism and Performance

Running many instances of the routine in parallel with independent random number generator states can yield a set of possible solutions from which a best approximate solution may be chosen.

9 Further Comments

Memory is internally allocated for 3×nc-2 integers and nc-1 real values.
In the case of two cities that are not connected, a suitably large number should be used as the distance (cost) between them so as to deter solution paths which directly connect the two cities. Solutions which contain an artificial link (i.e., a connection with a large distance between them to indicate no actual link) may be patched, using the shortest path algorithm h03adf.
If a city is to be visited more than once (or more than twice for the home city) then the distance matrix should contain multiple entries for that city (on rows and columns i1,i2,) with zero entries for distances to itself and identical distances to other cities.

10 Example

An approximation to the best path through 21 cities in the United Kingdom and Ireland, beginning and ending in Oxford, is sought. A lower bound is calculated internally.

10.1 Program Text

Program Text (h03bbfe.f90)

10.2 Program Data

Program Data (h03bbfe.d)

10.3 Program Results

Program Results (h03bbfe.r)