ArticlePDF Available

Abstract and Figures

Empirical evidence demonstrates that when the same local search operator is used, variable neighborhood search consistently outperforms random multistart local search on all types of combinatorial and global optimization problems tested. In this paper we suggest that this superiority in performance may be explained by the distribution of the attraction basins around a current solution as a function of the distance from the solution. We illustrate with a well-known instance of the multisource Weber problem that the “attraction probabilities” for finding better solutions can be orders of magnitude larger in neighborhoods that are close to the current solution. The paper also discusses the global convergence properties of both general methods in the context of attraction probabilities. KeywordsMetaheuristics-Variable neighborhood search-Convergence-Attraction probabilities-Continuous location MSC classification (2000)90C59-90B85-90C26
Content may be subject to copyright.
4OR
DOI 10.1007/s10288-008-0089-1
INVITED SURVEY
Variable neighbourhood search: methods
and applications
Pierre Hansen ·Nenad Mladenovi´c·
José A. Moreno Pérez
Received: 5 May 2008 / Revised: 20 October 2008
© Springer-Verlag 2008
Abstract Variable neighbourhood search (VNS) is a metaheuristic, or a framework
for building heuristics, based upon systematic changes of neighbourhoods both in
descent phase, to find a local minimum, and in perturbation phase to emerge from
the corresponding valley. It was first proposed in 1997 and has since then rapidly
developed both in its methods and its applications. In the present paper, these two
aspects are thoroughly reviewed and an extensive bibliography is provided. Moreover,
one section is devoted to newcomers. It consists of steps for developing a heuristic
for any particular problem. Those steps are common to the implementation of other
metaheuristics.
Keywords Variable neighbourhood search ·Metaheuristic ·Heuristic
MSC classification 90C59 ·68T20 ·68W25
1 Introduction
Variable neighbourhood search (VNS) is a metaheuristic, or framework for building
heuristics, aimed at solving combinatorial and global optimization problems. Its basic
P. Hansen
GERAD and HEC Montréal, Montréal, QC H3T 2A7, Canada
e-mail: pierre.hansen@gerad.ca
N. Mladenovi´c
GERAD and School of Mathematics, Brunel University, Uxbridge, UK
e-mail: nenad.mladenovic@brunel.ac.uk
J. A. Moreno Pérez (B
)
IUDR and Dep. Estadística, I.O. y Computación, University of La Laguna, 38271 La Laguna, Spain
e-mail: jamoreno@ull.es
123
P. Hansen et al.
idea consists in a systematic change of neighbourhood combined with a local search.
Since its inception, VNS has undergone many developments and been applied in
numerous fields. We review below the basic rules of VNS and of its main extensions.
In addition, some of the most successful applications are briefly summarized. Pointers
to many other applications are given in the reference list.
A deterministic optimization problem may be formulated as
min{f(x)|xX,XS},(1)
where S,X,xand frespectively denote the solution space and feasible set,afeasible
solution and a real-valued objective function.IfSis a finite but large set, a combinato-
rial optimization problem is defined. If S=Rn, we refer to continuous optimization.
A solution xXis optimal if
f(x)f(x), xX.
An exact algorithm for problem (1), if one exists, finds an optimal solution x, together
with the proof of its optimality, or shows that there is no feasible solution, i.e., X=∅.
Moreover, in practice, the time needed to do so should be finite (and not too long).
When one deals with a continuous function, it is reasonable to allow for some degree
of tolerance, i.e., to stop when a feasible solution xhas been found such that
f(x)< f(x)+ε, xXor f(x)f(x)
f(x), xX
for some small positive ε.
Many practical instances of problems of form (1), arising in Operations Research
and other fields, are too great for an exact solution to be found in reasonable time.
It is well-known from complexity theory (Garey and Johnson 1978;Papadimitriou
1994) that thousands of problems are NP-hard, such that no algorithm with a number
of steps polynomial in the size of the instances is known for solving any of them and
that if one were found it would be a solution for all. Moreover, in some cases where a
problem admits a polynomial algorithm, this algorithm may be such that realistic size
instances cannot be solved in reasonable time in the worst case, and sometimes also
in the average case or in most cases.
This explains the need to resort to heuristics which speedily yield an approximate
solution, or sometimes an optimal solution but one which has no proof of its optimality.
Some of these heuristics have a worst-case guarantee, i.e., the solution xhobtained
satisfies f(xh)f(x)
f(xh)ε, xX(2)
for some ε, though this is rarely small. Moreover, this upper bound εon the worst-
case error is usually much larger than the average error observed in practice and may
therefore be a bad guide in selecting a heuristic. In addition to avoiding excessive
computing time, heuristics address another problem: local optima. A local optimum
123
Variable neighbourhood search: methods and applications
xLof problem (1) is such that
f(xL)f(x), xN(xL)X(3)
where N(xL)denotes a neighbourhood of xL(ways to define such a neighbourhood
will be discussed below). If there are many local minima, the range of values which
they span may be large. Moreover, the globally optimum value f(x)may differ sub-
stantially from the average value of the local minima, or even from the best such value
among many, obtained by some simple heuristic such as multistart (a phenomenon
called the Tchebycheff catastrophe in Baum (1986)). There are, however, many ways
to escape from local optima or, more precisely, from the valleys which contain them.
Metaheuristics are general frameworks to build heuristics for combinatorial and
global optimization problems. For discussion of the best-known of them, the reader
is referred to the following survey books Reeves (1993), Glover and Kochenberger
(2003) and Burke and Kendall (2005). Some of the many successful applications of
metaheuristics are also mentioned there.
Variable Neighbourhood Search (VNS) (Mladenovi´c 1995;Mladenovi´c and Hansen
1997;Hansen and Mladenovi´c 1997,1999,2001a,2003,2005;Moreno-Pérez et al.
2005) is a metaheuristic which systematically exploits the idea of neighbourhood
change, both in descent to local minima and in escape from the valleys which contain
them. VNS heavily relies upon the following observations:
Fact 1 A local minimum with respect to one neighbourhood structure is not neces-
sarily a local minimum for another neighbourhood structure.
Fact 2 A global minimum is a local minimum with respect to all possible neighbour-
hood structures.
Fact 3 For many problems local minima with respect to one or several neighbour-
hoods are relatively close to each other.
This last observation is empirical. It implies that a local optimum often provides some
information about the global optimum. For instance, it may be the case that there are
several variables with the same value in both. However, it is not usually known which
ones are of this kind. An organized study of the neighbourhood of this local optimum
is therefore in order, until a better one is found.
Unlike many other metaheuristics, the basic schemes of VNS and its extensions
are simple and require few, and sometimes no parameters. Therefore, in addition to
providing very good solutions, often in simpler ways than other methods, VNS gives
insight into the reasons for such a performance, which, in turn, can lead to more
efficient and sophisticated implementations.
The paper is organized as follows. Background ideas, which in part inspired VNS,
are briefly discussed in Sect. 2. Basic schemes are reviewed in Sect. 3. Section 4is
devoted to newcomers. The steps for developing heuristics for any particular problem
are given. Most of those steps are common to the implementation of other meta-
heuristics. Then some tips which can help to improve the current VNS version are
123
P. Hansen et al.
listed. Various applications are classified and surveyed in Sect. 5. Section 6lists those
desirable properties of metaheuristics that are enjoyed by VNS.
The purpose of this paper is threefold: (i) to present to researchers the main ideas
and schemes of VNS; (ii) to provide an extensive list of successful applications and
(iii) to (gently) introduce newcomers into the metaheuristics area.
2 Background
VNS embeds a local search heuristic for solving combinatorial and global optimization
problems. This idea has had some predecessors. It allows a change of the neighbour-
hood structures within this search. In this section, we give a brief introduction to the
variable metric algorithm for solving continuous convex problems and local search
heuristics for solving combinatorial and global optimization problems.
2.1 Variable metric method
The variable metric method for solving unconstrained continuous optimization prob-
lem (1) has been suggested by Davidon (1959) and Fletcher and Powell (1963). The
idea is to change the metric (and thus the neighbourhood) at each iteration such that
the search direction (steepest descent with respect to the current metric) adapts better
to the local shape of the function. In the first iteration a Euclidean unit ball in the n
dimensional space is used and the steepest descent (anti-gradient) direction found. At
subsequent iterations, ellipsoidal balls are used and the steepest direction of descent
is obtained with respect to a new metric resulting from a linear transformation. The
purpose of such changes is to build up, iteratively, a good approximation to the inverse
of the Hessian matrix A1of f, that is, to construct a sequence of matrices Hiwith
the property,
lim
i→∞ Hi=A1.
In the convex quadratic programming case, the limit is achieved after niterations
instead of an infinity of them. In this way the so-called Newton search direction is
obtained. The advantages are that: (i) it is not necessary to find the inverse of the
Hessian (which requires O(n3)operations) at each iteration; (ii) the second order
information is not needed. Assume that the function f(x)is approximated by its
Taylor series
f(x)=1
2xTAx bTx(4)
with positive definite matrix A(denoted by A>0). Applying the first order condition
f(x)=Ax b=0wehave Axopt =b, where xopt is a minimum point. At
the current point we have Axi=∇f(xi)+b.We will not rigorously derive here
the Davidon–Fletcher–Powell (DFP) algorithm for transforming Hiinto Hi+1.Let
us mention only that subtracting one of these last two equations from the other and
123
Variable neighbourhood search: methods and applications
multiplying (from the left) by the inverse matrix A1,wehave
xopt xi=−A1f(xi).
Subtracting this last equation evaluated at xi+1from the same equation at xigives
xi+1xi=−A1(f(xi+1)−∇ f(xi)). (5)
Having made the step from xito xi+1, we might reasonably require that the new
approximation Hi+1satisfies (5) as if it were actually A1; that is,
xi+1xi=−Hi+1(f(xi+1)−∇f(xi)). (6)
We might also assume that the updating formula for matrix Hishould be of the form
Hi+1=Hi+U, where Uis a correction. It is possible to obtain different updating
formulas for Uand thus for Hi+1, keeping Hi+1positive definite (Hi+1>0). In fact,
there exists a whole family of updates, the Broyden family. From practical experience,
the so-called BFGS method seem to be the most popular (see, e.g., Gill et al. (1981)
for details). Steps are listed in Algorithm 1.
Function VarMetric(x);
let xRnbe an initial solution;1
HI;g←−f(x);2
for i=1to ndo3
αarg minαf(x+α·Hg);4
xx+α·Hg;5
g←−f(x);6
HH+U;7
end
Algorithm 1: Variable metric algorithm
From the above one can conclude that even in solving a convex program, a change
of metric, and, thus, a change of the neighbourhoods induced by this metric, may
produce more efficient algorithms. Thus, using the idea of neighbourhood change for
solving NP-hard problems could well lead to even greater benefits.
2.2 Local search
Alocal search heuristic consists in choosing an initial solution x, finding a direction of
descent from x, within a neighbourhood N(x), and moving to the minimum of f(x)
within N(x)in the same direction. If there is no direction of descent, the heuristic
stops; otherwise, it is iterated. Usually the steepest direction of descent, also referred
to as best improvement, is used. This set of rules is summarized in Algorithm 2,
where we assume that an initial solution xis given. The output consists of a local
minimum, also denoted by x, and its value. Observe that a neighbourhood structure
123
P. Hansen et al.
N(x)is defined for all xX. In discrete optimization problems it usually consists
of all vectors obtained from xby some simple modification, e.g., in the case of 0-1
optimization, complementing one or two components of a 0-1 vector. Then, at each
step, the neighbourhood N(x)of xis explored completely. As this may be time-
consuming, an alternative is to use the first descent heuristic. Vectors xiN(x)are
then enumerated systematically and a move is made as soon as a direction for the
descent is found. This is summarized in Algorithm 3.
Function BestImprovement(x);
repeat
1
xx;2
xarg minyN(x)f(y)
3
until (f(x)f(x));
Algorithm 2: Best improvement (steepest descent) heuristic
Function FirstImprovement(x);
repeat
1
xx;i0;2
repeat3
ii+1;4
xarg min{f(x), f(xi)},xiN(x)5
until (f(x)< f(xi)or i=|N(x)|);
until (f(x)f(x));
Algorithm 3: First improvement heuristic
3 Basic schemes
Let us denote with Nk,(k=1,...,kmax), a finite set of pre-selected neighbourhood
structures, and with Nk(x)the set of solutions in the kth neighbourhood of x. We will
also use the notation N
k,k=1,...,k
max, when describing local descent. Neighbour-
hoods Nkor N
kmay be induced from one or more metric (or quasi-metric) functions
introduced into a solution space S.Anoptimal solution xopt (or global minimum) is a
feasible solution where a minimum of problem (1) is reached. We call xXalocal
minimum of problem (1) with respect to Nk(w.r.t. Nkfor short), if there is no solution
xNk(x)Xsuch that f(x)< f(x).
In order to solve problem (1) by using several neighbourhoods, facts 1–3 can be
used in three different ways: (i) deterministic; (ii) stochastic; (iii) both deterministic
and stochastic. We first give in Algorithm 4the steps of the neighbourhood change
function which will be used later.
Function NeighbourhoodChange() compares the new value f(x)with the
incumbent value f(x)obtained in the neighbourhood k(line 1). If an improvement
is obtained, kis returned to its initial value and the new incumbent updated (line 2).
Otherwise, the next neighbourhood is considered (line 3).
123
Variable neighbourhood search: methods and applications
Function NeighbourhoodChange (x,x,k);
if f(x)< f(x)then1
xx;k1/*Makeamove*/;2
else
kk+1 /* Next neighbourhood */ ;
3
end
Algorithm 4: Neighbourhood change or Move or not function
3.1 Variable neighbourhood descent (VND)
The variable neighbourhood descent (VND) method is obtained if the change of neigh-
bourhoods is performed in a deterministic way. Itssteps are presented in Algorithm 5.
In the descriptions of all algorithms that follow, we assume that an initial solution x
is given. Most local search heuristics in their descent phase use very few neighbour-
Function VND (x,k
max);
repeat
1
k1;2
repeat3
xarg minyN
k(x)f(x)/* Find the best neighbor in Nk(x)*/ ;
4
NeighbourhoodChange (x,x,k) /* Change neighbourhood */ ;5
until k=k
max;
until no improvement is obtained;
Algorithm 5: Steps of the basic VND
hoods (usually one or two, i.e., k
Max 2). Note that the final solution should be a
local minimum with respect to all k
max neighbourhoods; hence the chances to reach
a global one are larger when using VND than with a single neighbourhood structure.
Moreover, using this sequential order of neighbourhood structures in VND above, one
can develop a nested strategy. Assume, for example, that k
max =3. Then a possible
nested strategy is: perform VND above for the first two neighbourhoods, in each point
xthat belongs to the third (xN3(x)). Such an approach is applied, e.g., in Brimberg
et al. (2000) and Hansen and Mladenovi´c(2001b).
3.2 Reduced VNS
The Reduced VNS (RVNS) method is obtained if random points are selected from
Nk(x)and no descent is made. Rather, the values of these new points are compared
with that of the incumbent and updating takes place in case of improvement. We
assume that a stopping condition has been chosen, among various possibilities, e.g.,
the maximum cpu time allowed tmax, or the maximum number of iterations between
two improvements. To simplify the description of the algorithms we always use tmax
123
P. Hansen et al.
below. Therefore, RVNS uses two parameters: tmax and kmax. Its steps are presented
in Algorithm 6. With the function Shake represented in line 4, we generate a point
xat random from the kth neighbourhood of x, i.e., xNk(x).
Function RVNS (x,kmax,tmax );
repeat
1
k1;2
repeat3
xShake(x,k);4
NeighborhoodChange (x,x,k);5
until k=kmax;
tCpuTime()
6
until t>tmax;
Algorithm 6: Steps of the Reduced VNS
RVNS is useful in very large instances, for which local search is costly. It has been
observed that the best value for the parameter kmax is often 2. In addition, the max-
imum number of iterations between two improvements is usually used as a stopping
condition. RVNS is akin to a Monte-Carlo method, but is more systematic (see, for
example, Mladenovi´cetal.(2003b) where the results obtained by RVNS were 30%
better than those of the Monte-Carlo method in solving a continuous min–max prob-
lem). When applied to the p-Median problem, RVNS gave solutions as good as the
Fast Interchange heuristic of Whitaker (1983) while being 20–40 times faster (Hansen
et al. 2001).
3.3 Basic VNS
The Basic VNS (BVNS) method (Mladenovi´c and Hansen 1997) combines determin-
istic and stochastic changes of neighbourhood. Its steps are given in Algorithm 7.
Function VNS (x,kmax,tmax );
repeat
1
k1;2
repeat3
xShake(x,k) /* Shaking */;4
x FirstImprovement(x) /* Local search */;5
NeighbourhoodChange(x,x,k) /* Change neighbourhood */;6
until k=kmax;
tCpuTime()
7
until t>tmax;
Algorithm 7: Steps of the basic VNS
Often successive neighbourhoods Nkwill be nested. Observe that point xis gener-
ated at random in Step 4 in order to avoid cycling, which might occur if a deterministic
123
Variable neighbourhood search: methods and applications
N1(x)
f
x
f(x)
x
N (x)
k
Global minimum
Local minimum
Fig. 1 Basic VNS
Fig. 2 Four-cardinality tree
problem 2
1
3
4
5
6
7
9
8
11
10
12
1
26 6 23
25 15 16 24
17 20 18 16 916
86
16 99
17 9
rule were applied. In Step 5 the first improvement local search (Algorithm 3) is usually
adopted. However, it can be replaced with best improvement (Algorithm 2).
Example We illustrate the basic step on a minimum k-cardinality tree instance taken
from Jornsten and Lokketangen (1997)(seeFig.2). The minimum k-cardinality tree
problem on graph G(k-card for short) consists in finding a subtree of Gwith exactly
kedges whose sum of weights is minimum.
The steps of BVNS are given in Fig. 3. In Step 0 the objective function value, i.e.,
the sum of edge weights, is equal to 40; it is indicated in the right-hand bottom corner
of the figure. This first solution is a local minimum with respect to the edge-exchange
neighbourhood structure (one edge in, one out). After shaking, the objective function
is 60, and after another local search, we return to the same solution. Then, in Step 3,
we take out 2 edges and add another 2 at random, and, after a local search, an improved
solution is obtained with a value of 39, etc. In Step 8, we find the optimal solution
with an objective function value equal to 36.
3.4 General VNS
Note that the Local search Step 5 may also be replaced by VND (Algorithm 5).
Using this general VNS (VNS/VND) approach has led to the most successful applica-
tions reported (see, for example, (Andreatta and Ribeiro 2002;Brimberg et al. 2000;
123
P. Hansen et al.
40
9374
933493
49
4060
1 11
25 2525
8
88
8
886
66
6
6
6
26
17
16 16
1616
16
9
999
99
9
18
99
9
LS
Shake-2 Shake-1
LS
LS Shake-2 LS
LS
Shake-1
36
0
543
876
21
Fig. 3 Steps of the Basic VNS for solving four-card tree problem
Canuto et al. 2001;Caporossi and Hansen 2000,2004;Caporossi et al. 1999a,c;
Hansen and Mladenovi´c 2001b;Hansen et al. 2006;Ribeiro and de Souza 2002;
Ribeiro et al. 2002). Steps of the general VNS (GVNS) are given in Algorithm 8.
Function GVNS (x,k
max,kmax ,tmax );
repeat
1
k1;2
repeat3
xShake(x,k);4
x VND(x,k
max);5
NeighborhoodChange(x,x,k);6
until k=kmax;
tCpuTime()
7
until t>tmax;
Algorithm 8: Steps of the general VNS
3.5 Skewed VNS
The skewed VNS (SVNS) method (Hansen et al. 2000) addresses the problem of
exploring valleys far from the incumbent solution. Indeed, once the best solution in
a large region has been found, it is necessary to go some way to obtain an improved
one. Solutions drawn at random in distant neighbourhoods may differ substantially
from the incumbent and VNS can then degenerate, to some extent, into the Multistart
heuristic (in which descents are made iteratively from solutions generated at random, a
heuristic which is known not to be very efficient). Consequently, some compensation
for distance from the incumbent must be made and a scheme called Skewed VNS
123
Variable neighbourhood search: methods and applications
is proposed for this purpose. Its steps are presented in Algorithms 10 and 11, where
the KeepBest(x,x) function simply keeps whichever is the better of xand x:if
f(x)< f(x)then xx.
Function NeighbourhoodChangeS(x,x,k);
if f(x)αρ ( x,x)< f(x)then1
xx;k12
else
kk+1
3
end
Algorithm 9: Steps of neighbourhood change for the skewed VNS
Function SVNS (x,kmax,tmax );
repeat
1
k1; xbest x;2
repeat3
xShake(x,k);4
x FirstImprovement(x);5
KeepBest (xbest ,x);6
NeighbourhoodChangeS(x,x,k);7
until k=kmax;
xxbest ;8
tCpuTime();9
until t>tmax;
Algorithm 10: Steps of the Skewed VNS
SVNS makes use of a function ρ(x,x)to measure the distance between the incum-
bent solution xand the local optimum found x . The distance used to define the Nk,
as in the above examples, could be used also for this purpose. The parameter αmust
be chosen in order to accept the exploration of valleys far away from xwhen f(x )is
larger than f(x)but not too much larger (otherwise one will always leave x). A good
value is to be found experimentally in each case. Moreover, in order to avoid frequent
moves from xto a close solution, one may take a large value for αwhen ρ(x,x)is
small. More sophisticated choices for a function of αρ (x,x )could be made through
a learning process.
3.6 Some extensions of basic VNS
Several easy ways to extend the basic VNS are now discussed. The basic VNS is a first
improvement descent method with randomization. Without much additional effort it
can be transformed into a descent-ascent method: in NeighbourhoodChange()
function, replace also xby x with some probability, even if the solution is worse
than the incumbent. It can also be changed into a best improvement method: make
123
P. Hansen et al.
a move to the best neighbourhood kamong all kmax of them. Its steps are given in
Algorithm 11.
Function BI-VNS (x,kmax,tmax );
repeat
1
k1;2
xbest x;
repeat
3
xShake(x,k);4
x FirstImprovement(x);5
KeepBest(xbest ,x );6
kk+1;7
until k=kmax;
xxbest ;8
tCpuTime()9
until t>tmax;
Algorithm 11: Steps of the basic Best Improvement VNS
Another variant of the basic VNS can be to find a solution xin the “Shaking”
step as the best among b(a parameter) randomly generated solutions from the kth
neighbourhood. There are two possible variants of this extension: (i) to perform only
one local search from the best among bpoints; (ii) to perform all blocal searches
and then choose the best. We now give an algorithm of a second type suggested by
Fleszar and Hindi (2004). There, the value of parameter bis set to k. In this way, no
new parameter is introduced (see Algorithm 12). It is also possible to introduce kmin
Function FH-VNS (x,kmax,tmax );
repeat
1
k1;2
repeat3
for =1to k do4
xShake(x,k);5
x FirstImprovement(x);6
KeepBest(x,x);7
end
NeighbourhoodChange(x,x,k);8
until k=kmax;
tCpuTime()
9
until t>tmax;
Algorithm 12: Steps of the Fleszar–Hindi extension of the basic VNS
and kstep, two parameters which control the change of neighbourhood process: in the
previous algorithms instead of k1setkkmin and instead of kk+1set
kk+kstep. The steps of Jump VNS are given in Algorithms 13 and 14.
123
Variable neighbourhood search: methods and applications
Function J-VNS (x,kmin,kst ep,kmax ,tmax);
repeat
1
kkmin;2
repeat3
xShake(x,k);4
x FirstImprovement(x);5
NeighbourhoodChangeJ(x,x,k,kmin,kstep);6
until k=kmax;
tCpuTime()
7
until t>tmax;
Algorithm 13: Steps of the Jump VNS
Function NeighborhoodChangeJ (x,x,k,kmin,kst ep);
if f(x)< f(x)then1
xx;kkmin;2
else
kk+kstep ;3
end
Algorithm 14: Neighbourhood change or Move or not function
3.7 Variable neighbourhood decomposition search
While the basic VNS is clearly useful for obtaining an approximate solution to many
combinatorial and global optimization problems, it remains a difficult or lengthy take
to solve very large instances. As often, the size of the problems considered is in practice
more limited by the tools available to solve them than by the needs of the potential
users of these tools. Hence, improvements appear to be highly desirable. Moreover,
when heuristics are applied to very large instances, their strengths and weaknesses
become clearly apparent. Three improvements of the basic VNS for solving large
instances are now considered.
The variable neighbourhood decomposition search (VNDS) method (Hansen et al.
2001) extends the basic VNS into a two-level VNS scheme based upon decomposition
of the problem. Its steps are presented in Algorithm 15, where tdis an additional
parameter and represents the running time given for solving decomposed (smaller
sized) problems by VNS.
For ease of presentation, but without loss of generality, we assume that the solution
xrepresents the set of some elements. In Step 4 we denote with ya set of ksolution
attributes present in xbut not in x(y=x\x). In Step 5 we find the local optimum
yin the space of y; then we denote with x the corresponding solution in the whole
space S(x =(x\y)y). We notice that exploiting some boundary effects in a
new solution can significantly improve the solution quality. This is why, in Step 6,
we find the local optimum x in the whole space Susing x as an initial solution.
If this becomes time-consuming, then at least a few local search iterations should be
performed.
123
P. Hansen et al.
Function VNDS (x,kmax,tmax ,td);
repeat
1
k2;2
repeat3
xShake (x,k); yx\x;4
yVNS(y,k,td); x =(x\y)y;5
x FirstImprovement(x);6
NeighborhoodChange(x,x,k);7
until k=kmax;
until t>tmax;
Algorithm 15: Steps of VNDS
VNDS can be viewed as embedding the classical successive approximation scheme
(which has been used in combinatorial optimization at least since the 1960s; see, for
example, Griffith and Stewart (1961) in the VNS framework.
3.8 Parallel VNS
Parallel VNS (PVNS) methods are another extension. Several ways of parallelizing
VNS have recently been proposed for solving the p-Median problem. In García-López
et al. (2002) three of them are tested: (i) parallelize local search; (ii) augment the
number of solutions drawn from the current neighbourhood and make a local search
in parallel from each of them and (iii) do the same as (ii) but update the information
about the best solution found. The second version gives the best results. It is shown
in Crainic et al. (2004) that assigning different neighbourhoods to each processor and
interrupting their work as soon as an improved solution is found gives very good
results. The best-known solutions have been found on several large instances taken
from TSP-LIB Reinelt (1991). Three Parallel VNS strategies are also suggested for
solving the Travelling purchaser problem in Ochi et al. (2001).
3.9 Primal-dual VNS
For most modern heuristics, the difference in value between the optimal solution
and the obtained one is completely unknown. Guaranteed performance of the pri-
mal heuristic may be determined if a lower bound on the objective function value is
known. To this end, the standard approach is to relax the integrality condition on the
primal variables, based on a mathematical programming formulation of the problem.
However, when the dimension of the problem is large, even the relaxed problem may
be impossible to solve exactly by standard commercial solvers. Therefore, it seems a
good idea to solve dual relaxed problems heuristically as well. In this way we obtain
guaranteed bounds on the primal heuristics performance. The next problem arises if
we want to reach an exact solution within a Branch and bound framework, since having
the approximate value of the relaxed dual does not allow us to branch easily, e.g., by
exploiting complementary slackness conditions. Thus, the exact value of the dual is
necessary.
123
Variable neighbourhood search: methods and applications
In Primal-dual VNS (PD-VNS) (Hansen et al. 2007a) one possible general way
to attain both the guaranteed bounds and the exact solution is proposed. Its steps are
given in Algorithm 16.
Function PD-VNS (x,k
max,kmax ,tmax );
BVNS (x,k
max,kmax ,tmax ) /* Solve primal by VNS */;1
DualFeasible(x,y) /* Find (infeasible) dual such that fP=fD*/ ;2
DualVNS(y) /* Use VNS do decrease infeasibility */;3
DualExact(y) /* Find exact (relaxed) dual */;4
BandB(x,y) /* Apply branch-and-bound method */ ;5
Algorithm 16: Steps of the basic PD-VNS
In the first stage an heuristic procedure based on VNS is used to obtain a near
optimal solution. In Hansen et al. (2007a) it is shown that VNS with decomposition is
a very powerful technique for large-scale simple plant location problems (SPLP) with
up to 15,000 facilities and 15,000 users. In the second phase, this approach is designed
to find an exact solution to the relaxed dual problem. Solving SPLP is accomplished
in three stages: (i) find an initial dual solution (generally infeasible), using the primal
heuristic solution and complementary slackness conditions; (ii) improve the solution
by applying VNS to the unconstrained nonlinear form of the dual; (iii) solve the dual
exactly using a customized “sliding simplex” algorithm which applies “windows” to
the dual variables, substantially reducing the size of the problem. In all the problems
tested, including instances much larger than previously reported in the literature, the
procedure was able to find the exact dual solution in reasonable computing time. In the
third and final phase armed with tight upper and lower bounds, obtained respectively
from the heuristic primal solution in phase one and the exact dual solution in phase two,
we apply a standard branch-and-bound algorithm to find an optimal solution of the
original problem. The lower bounds are updated with the dual sliding simplex method
and the upper bounds, whenever new integer solutions are obtained at the nodes of the
branching tree. In this way it is possible to solve exactly problem instances with up to
7,000 ×7,000 for uniform fixed costs and 15,000 ×15,000 otherwise.
3.10 Variable neighbourhood formulation space search
Traditional ways to tackle an optimization problem consider a given formulation and
search in some way through its feasible set X. The fact that the same problem may
often be formulated in different ways allows search paradigms to be extended to
include jumps from one formulation to another. Each formulation should lend itself
to some traditional search method, its “local search” which works totally within this
formulation, and yields a final solution when started from some initial solution. Any
solution found in one formulation should easily be translatable to its equivalent in
any other formulation. We may then move from one formulation to another, using the
solution resulting from the former’s local search as an initial solution for the latter’s
123
P. Hansen et al.
local search. Such a strategy will, of course, be useful only in situations where local
searches in different formulations behave differently.
This idea was recently investigated in Mladenovi´cetal.(2005) using an approach
which systematically changes the formulations for solving circle packing problems
(CPP). It is shown there that the stationary point of a non-linear programming formu-
lation of CPP in Cartesian coordinates is not necessarily also a stationary point in a
polar coordinate system. A method Reformulation descent (RD) is suggested which
alternates between these two formulations until the final solution is stationary with
respect to both. The results obtained were comparable with the best known values,
but they were achieved some 150 times faster than by an alternative single formu-
lation approach. In the same paper, the idea suggested above of Formulation space
search (FSS) is also introduced, using more than two formulations. Some research
in this direction has been reported in Mladenovi´c(2005), Plastria et al. (2005) and
Hertz et al. (2008). One algorithm which uses the variable neighbourhood idea in
searching through the formulation space is given in Algorithms 17 and 18.
Function FormulationChange(x,x,φ,φ
,);
if f,x)< f(φ , x)then1
φφ;xx;min
2
else
+step;3
end
Algorithm 17: Formulation change function
Function VNFSS(x,φ,
max);
repeat
1
1 /* Initialize formulation in F*/;2
while max do3
ShakeFormulation(x,x,φ,φ ,)/*,x)(N(φ),N(x)) at random */;4
FormulationChange(x,x,φ,φ ,) /* Change formulation */;5
end
until some stopping condition is met;
Algorithm 18: Reduced variable neighborhood FSS
In Fig. 4we consider the CPP case with n=50. The set consists entirely of mixed
formulations, in which some circle centres are given in Cartesian coordinates while
the others are given in polar coordinates. The distance between two formulations is
then the number of centres whose coordinates are expressed in different systems in
each formulation. FSS starts with the RD solution, i.e., with rcurr =0.121858. The
values of kmin and kstep are set to 3 and the value of kmax is set to n=50. We did not
gain any improvement with kcurr =3,6 and 9. The next improvement was obtained
for kcurr =12. This means that a “mixed” formulation with 12 polar and 38 Cartesian
coordinates is used. Then we turned again to the formulation with three randomly
123
Variable neighbourhood search: methods and applications
Fig. 4 Reduced FSS for PCC problem and n=50
chosen circle centres, which was unsuccessful; but we obtained a better solution with
6, etc. After 11 improvements we ended with a solution with radius rmax =0.125798.
4 Developing VNS
4.1 Getting started
This section is devoted to newcomers. Its purpose is to help students in making a first
very simple version of VNS, which would not necessarily be competitive with later
more sophisticated versions. Most of the steps are common to the implementation of
other metaheuristics.
A step-by-step procedure
1. Getting familiar with the problem. Think about the problem at hand. In order to
understand it better, make a simple numerical example and spend some time in
trying to solve it by hand in your own way. Try to understand why the problem is
hard and why a heuristic is needed.
2. Read Literature. Read about the problem and the solution methods in the literature.
3. Test instances (read data). Use your numerical example as a first instance for
testing your future code, but if it is not large enough, take some instance from
the web, or make a routine for generating random instances. In the second case,
read how to generate events using uniformly distributed numbers from the (0,1)
123
P. Hansen et al.
interval (since each programming language has statements for getting such random
numbers).
4. Data structure. Think about the way in which the solution of the problem will
be represented in the memory. Consider two or more representations of the same
solution to see if they can reduce the complexity of some routines, i.e., analyse
the advantages and disadvantages of each possible presentation.
5. Initial solution. Having established a routine for reading or generating instances
of the problem, the next step is to obtain an initial solution. For the simple version,
any random feasible solution may be used, but the usual way is to develop some
greedy constructive heuristic. This is normally not hard to do.
6. Objective value. Make a procedure for calculating the objective function value
for a given solution. Notice that at this stage, we already have all ingredients for
a Monte-Carlo method: the generation of a random solution and calculation of
the objective function value. Get a solution to your problem by the Monte Carlo
heuristic (i.e., repeat steps 5 and 6 many times and keep the best one).
7. Shaking. Make a procedure for Shaking. This is a key step of VNS. However, it
is easy to implement and usually requires only a few lines of computer code. For
example, in solving the multi-source Weber problem, the easiest perturbation of
the current solution is to re-allocate a randomly chosen entity from its cluster to
another one, also chosen at random. In fact, in this case, the shaking step (or jump,
in the kth neighbourhood) would need only three lines of the computer code:
For i=1tok
a(1+n·Rnd1)=1+m·Rnd2
EndFor
This solution is saved in an array a() ∈{1,...,m}which denotes the membership
or allocation of entity (=1,...,n); Rnd1 and Rnd2 denote random numbers
uniformly distributed from the (0,1) interval. Compare the results obtained by the
Reduced VNS (take kmax =2) with those of the Monte Carlo method.
8. Local search. Choose an off-the-shelf local search heuristic (or develop a new
one). In building a new local search, consider several usual moves which define
the neighbourhood of the solution, such as drop, add, swap, interchange,etc.In
addition, for the efficiency (speed) of the method, it is very important to pay special
attention to updating of the incumbent solution. In other words, it is usually not
necessary to use a procedure for calculating the objective function values for each
point in the neighbourhood, i.e., it is often possible to reach these values by very
simple calculations.
9. Comparison. Include the local search routine into RVNS to get the basic VNS,
and compare it with other methods from the literature.
4.2 More tips
Sometimes the basic VNS does not provide very good results and it must then be
refined in one of the following ways.
1. First vs. best improvement. Experimentally compare first and best improvement
strategies within a local search. Previous experience suggest the following: if your
123
Variable neighbourhood search: methods and applications
initial solution is chosen at random, use the first improvement rule, but if some
constructive heuristic is used, use the best improvement rule.
2. Reduce the neighbourhood. The reason for the bad behaviour of any local search
may be unnecessary visits to all the solutions in the neighbourhood. Try to identify
“promising” subsets of the neighbourhood and visit these only; ideally, find a rule
which automatically removes solutions from the neighbourhood solutions whose
objective values are no better than the current one.
3. Intensified shaking. In developing a more effective VNS, one must spend some
time in checking how sensitive is the objective function to small change (shaking)
of the solution. The trade-off between intensification and diversification of the
search in VNS is balanced in a Shaking procedure. For some problem instances,
a completely random jump in the kth neighbourhood is too diversified. In such
cases, some intensify shaking procedure is in order. For instance, a k-interchange
neighbourhood may be reduced by repeating ktimes random add followed by
best drop moves. A special case of intensified shaking is the so-called Large
neighbourhood search, where krandomly chosen attributes of the solutions are
destroyed (dropped), and then the solution is re-built in the best way (by some
constructive heuristic).
4. VND. Analyse several possible neighbourhood structures, estimate their sizes,
order them, try them out and keep the most efficient ones. In other words, develop
a VND and replace the local search routine with this VND to get a general VNS.
5. Experiments with parameter settings. The single central parameter of VNS is kmax,
which should be tuned experimentally. However, the procedure is not usually very
sensitive to kmax and, in order to obtain a parameter-free VNS, one can fix its value
at the value of some input parameter, e.g., for the p-median, kmax =p;forthe
minimum sum-of-square clustering kmax =m,etc.
5 Applications
Applications of VNS, or of hybrids of VNS combined with other metaheuristics, are
diverse and numerous. In this section, we review some of them.
5.1 Industrial applications
Regarding the first industrial applications, the oil industry has provided many prob-
lems. These include the design of an offshore pipeline network (Brimberg et al. 2003),
the pooling problem (Audet et al. 2004) and the scheduling of walkover rigs for Petro-
bras (Aloise et al. 2006).
5.2 Design problems in communication
Costa et al. (2002) apply a variable neighbourhood decomposition search (VNDS)
for the optimization of a power plant cable layout. Mladenovi´cetal.(2003b). Use
VNS for solving a spread spectrum radar polyphase code design problem.
123
P. Hansen et al.
Degila and Sansò (2004) propose a VNS to deal with the topological design of a yotta-
bit-per-second (1 yotta =1024) multidimensional network based upon agile optical
cores which provides fully meshed connectivity with direct optical paths between
edge nodes which are electronically controlled. Lapierre et al. (2004) consider the
application of a Tabu Search/VNS hybrid for designing distribution networks with
transshipment centres. Meric et al. (2004) apply VNS for optical routing in networks
using latin routers. Dias et al. (2006) use a General VNS (GVNS) to improve the qual-
ity of the solution obtained with a Greedy Randomized Adaptive Search Procedure
(GRASP) for the ring star problem. In Loudni et al. (2006) a difficult real-life network
problem of France Telecom R&D, the on-line resources allocation for ATM networks
with rerouting is solved by VNS/LDS+ CP.
The application of VNS in the design of SDH/WDM networks is proposed in
Melián-Batista et al. (2008); it is improved with the use of an adaptive memory mech-
anism in Melián (2006) and by applying a pilot method in Höller et al. (2008). Taga wa
et al. (2007) deal with the robust design of Surface Acoustic Wave (SAW) filters.
Ribeiro et al. (2007) consider VNS and other metaheuristics for optimization prob-
lems in computer communications.
5.3 Location problems
Location problems have also attracted much attention from the VNS researchers
and practitioners. Among discrete models the p-median has been the most studied
and has played a central rule in the development of a VNS metaheuristic. Brimberg
and Mladenovi´c(1996) give the earliest applications of VNS. Hansen et al. (2001)
introduces a variable neighbourhood decomposition search solving the p-median
problem. García-López et al. (2002) is the first parallel version of the VNS. Hansen
and Mladenovi´c(2008) complete the comparative analysis in Alba and Domínguez
(2006) with a detailed comparison of several versions of VNS with other metaheuris-
tics for the p-median problem. See Mladenovi´cetal.(2007a) for the role of VNS in
solving the p-median problem.
Other discrete location problems solved with VNS are the p-centre problem
(Mladenovi´c et al. 2003a), the maximum capture problem (Benati and Hansen 2002)
and several variants of the p-median problem. Domínguez-Marín et al. (2005) deal
with solving the discrete ordered median problem, Fathali and Kakhki (2006) apply
VNS to the p-median problem with pos/neg weights, Fleszar and Hindi (2008)solve
the capacitated p-median problem and Pérez et al. (2007) propose a hybrid which com-
bines VNS with Path Relinking for the p-hub median problem. Osman and Ahmadi
(2007) investigate different search and selection strategies, including the VND for
the capacitated p-median problem with single source constraint. Moreno-Pérez et al.
(2003) propose a variable neighbourhood tabu search (VNTS) hybrid and consider its
application to the median cycle problem.
Among continuous models, the multi-source Weber problem is first addressed
in Brimberg et al. (2000) and in Brimberg et al. (2004) with constant opening costs.
Brimberg et al. (2006a) use VNS in a decomposition strategy for large-scale instances.
Brimberg et al. (2008a) apply VNS to the maximum return-on-investment plant
123
Variable neighbourhood search: methods and applications
location problem with market share. Ljubic (2007) proposes a hybrid VNS for a con-
nected facility location problem which combines the facility location problem and the
Steiner tree problem in graphs. Hansen et al. (2007a) apply a primal-dual VNS for the
simple plant location problem. Finally, Bischoff and Dächert (2008) use VNS and other
heuristics for a generalized class of continuous location-allocation problems and Jabal-
ameli and Ghaderi (2008) propose hybrid algorithms which combine Genetic Algo-
rithm (GA) and VNS for the uncapacitated continuous location-allocation problem.
Drezner et al. (2005) analyse the difficulty in the instances of quadratic assign-
ment problems for metaheuristic approaches and Zhang et al. (2005) use a VNS with
permutation distance. Han et al. (2007) use a hybrid of VNS with Ant Colony Opti-
mization and Liu and Abraham (2007) a fuzzy hybrid of VNS with Particle Swarm
Optimization (PSO) method.
Yang et al. (2007) apply optimization strategies based on Simulated Annealing and
VNS for the base station location problem in a WCDMA (Wideband Code-Division
Multiple Access) network. Pacheco et al. (2008) use VNS to solve the classical max-
imum covering location problem for locating health resources.Wollenweber (2008)
uses several hybrids with VNS for a multi-stage facility location problem with stair-
case costs and splitting of commodities.
5.4 Data mining
VNS proved to be a very efficient tool in cluster analysis. In particular, the J-Means
heuristic combined with VNS appears to be state-of-the-art for the heuristic solution
of minimum sum-of-square clustering (Hansen and Mladenovi´c 2001b;Belacel et al.
2002,2004a). Combined with stabilized column generation (du Merle et al. 1999)it
leads to the most efficient exact algorithm at present for this problem (du Merle et al.
2000). Such an approach has also been applied by Hansen and Perron (2007)tosolve
the L1embeddability problem for data sets.
Belacel et al. (2004b) use VNS Metaheuristic for Fuzzy Clustering cDNA Microar-
ray Gene Expression Data. Negreiros and Palhano (2006) propose a constructive pro-
cedure followed by a VNS to solve the capacitated centred clustering problem. Brusco
and Steinley (2007a) compare a VNS method with the classical k-means for the clus-
tering of two-mode proximity binary matrices and Brusco and Steinley (2007b) com-
pare heuristic procedures for Minimum Within-Cluster Sums of Squares Partitioning.
Benati (2008) applies VNS to categorical data fuzzy clustering. Other clustering prob-
lem applications appear in Brusco et al. (2008).
Another important data mining task which has been managed with VNS is classi-
fication. Pacheco et al. (2007) use VNS in the variable selection and determination of
the linear discrimination function coefficients. Karam et al. (2007) perform arbitrary-
norm hyperplane separation by VNS. The same problem has also been attacked with
VNS in Plastria et al. (2007). Hansen et al. (2007b) apply VNS for colour image
quantization. Belacel et al. (2007) propose a VNS heuristic for learning the parame-
ters of the multiple criteria classification method PROAFTN from data. Carrizosa et
al. (2007) use VNS for the selection of the Globally Optimal Prototype Subset for
Nearest-Neighbour Classification.
123
P. Hansen et al.
5.5 Graph problems
In addition to some design problems in communications and most of the location
problems, VNS has been applied to other combinatorial optimization problems on
graphs. A VNS is proposed for the max-cut problem in a graph and compared with
other metaheuristics in Festa et al. (2002) and an hybridization between a memetic
algorithm and VNS is proposed for the same problem by Duarte et al. (2005).
Moreno-Pérez et al. (2003) propose a VNTS hybrid for the median cycle problem.
Hansen et al. (2004) propose and test a basic VNS which combines greedy with the
simplicial vertex test in its descent step for the maximum clique problem. For the graph
colouring problem, Avanthay et al. (2003) propose an adaptation of the VNS meta-
heuristic, Galinier and Hertz (2006) present a survey of local search methods which
includes VNS and Hertz et al. (2008) analyse the variable space search methodology
which extends the FSS. Brimberg et al. (2008b) propose a new heuristic based on
VNS for the k-cardinality subgraph problem, in contrast with the constructive heuris-
tics proposed in the literature.
Several graph problems involving trees have also been tackled with VNS. VNS is
used in Canuto et al. (2001) as a post-optimization procedure for a multistart local
search algorithm for the prize-collecting Steiner tree problem, based on the generation
of initial solutions by a primal-dual algorithm using perturbed node prizes. Ribeiro
et al. (2002) use a hybrid VNS-GRASP with perturbations for the Steiner problem
in graphs. Mladenovi´c and Uroševi´c(2003) propose the use of a VNS for the edge
weighted k-cardinality tree problem Uroševi´cetal.(2004) propose a variable neigh-
bourhood decomposition search (VNDS) for the same problem and Brimberg et al.
(2006b) for the vertex weighted k-cardinality tree problem. Ribeiro and de Souza
(2002) propose the use of VNS for the degree constrained minimum spanning tree
problem and de Souza and Martins (2008) use a Skewed VNS enclosing a second
order algorithm for the same problem. Hu et al. (2008) propose a VNS approach which
uses three different neighbourhood types to solve the generalized minimum spanning
tree problem. Finally, a VNS is used to solve the minimum labelling spanning tree
problem by Consoli et al. (2008).
5.6 Knapsack and packing problems
Another important class of problems solved with VNS and its variants and hybrids
are the knapsack and packing problems. In Puchinger et al. (2006) a relaxation guided
VNS is applied to the multidimensional knapsack problem and to its core problems.
The paper by Puchinger and Raidl (2008) constitutes an excellent illustration of a
dynamic ordering of the neighbourhood structures embedded in a VND algorithm
which is used to solve also the multidimensional knapsack problem. VNS has also
been successfully applied to the bin packing problem (Fleszar and Hindi 2002) and to
the strip packing problem (Beltrán et al. 2004). Parreño et al. (2008) present a VNS
algorithm for the container loading problem.
Circle and sphere packing have also been approached with VNS. Mladenovi´cetal.
(2005) introduce the RD which is applied to CPPs and Mladenovi´cetal.(2007b)the
FSS for the same problems. Kucherenko et al. (2007) use VNS to solve the kissing
123
Variable neighbourhood search: methods and applications
number problem, i.e., the problem of determining the maximum number of
D-dimensional spheres of radius rthat can be adjacent to a central sphere of radius r.
5.7 Mixed integer problems
Heuristics may help in finding a feasible solution or an improved and possibly optimal
solution to large and difficult mixed integer programs. The local branching method
of Fischetti and Lodi (2003) does this, in the spirit of VNS. For further developments
see Fischetti et al. (2004) and Hansen et al. (2006). Gutjahr et al. (2007) use the VNS
approach for noisy problems and its application to project portfolio analysis.
5.8 Time tabling
Timetabling and related manpower organization problems can be well solved with
VNS. They include the design of balanced MBA student teams (Desrosiers et al. 2005),
apportioning the European Parliament (Villa et al. 2006), detailed layout planning for
irregularly-shaped machines (Bock and Hoberg 2007) and nurse rostering (Burke
et al. 2004,2008). Cote et al. (2005) use a simplified VND in a hybrid multi-objective
evolutionary algorithm for the uncapacitated exam proximity problem. Sevkli and
Sevilgen (2006) propose a VNS approach for the orienteering problem and Archetti
et al. (2007) propose VNS to solve the team orienteering problem (TOP), that is, the
generalization to the case of multiple tours of the orienteering problem, known also
as the selective travelling salesman problem (TSP).
5.9 Scheduling
In recent years also several scheduling problems have been efficiently solved with
VNS approaches. They include single machine and parallel machines, multiobjective
scheduling, job shop scheduling, flow shop, resource-constrained project scheduling
and other scheduling problems.
5.9.1 Single machine scheduling
Gupta and Smith (2006) use a VNS algorithm for single machine total tardiness
scheduling with sequence-dependent setups. Lin and Ying (2008) propose a hybrid
Tabu-VNS meta-heuristic approach for single-machine tardiness problems with
sequence-dependent setup times. Liao and Cheng (2007) propose a VNS for minimiz-
ing single machine weighted earliness and tardiness with common due date. Tseng
et al. (2008) employ a VNS for large-size instances of the single machine total tar-
diness problem with controllable processing times. Wang and Tang (2008) propose a
population-based VNS for the single machine total weighted tardiness problem.
5.9.2 Parallel machine scheduling
Anghinolfi and Paolucci (2007) propose a hybrid metaheuristic approach which inte-
grates several features from tabu search, simulated annealing and VNS for a parallel
123
P. Hansen et al.
machine total tardiness scheduling problem. De Paula et al. (2007) apply VNS for solv-
ing parallel machines scheduling problems with sequence-dependent setups. Chen and
Chen (2008) propose an approach which integrates the principles of the VND approach
and tabu search for the unrelated parallel-machine scheduling problem with sequence-
dependent setup times.
5.9.3 Multiobjective scheduling
Gagné et al. (2005) use compromise programming with Tabu-VNS metaheuristic for
the solution of multiple-objective scheduling problems. Qian et al. (2006) deal with
multi-objective flow shop scheduling, using differential evolution.
5.9.4 Job shop scheduling
Sevkli and Aydin (2006a,b) use VNS algorithms for job shop scheduling problems.
Sevkli and Aydin (2007) propose parallel VNS algorithms and Gao et al. (2008)
propose a hybrid GA/VND and Pan et al. (2007b) a PSO/VNS hybrid heuristic for
these problems. Liu et al. (2006) propose a variable neighbourhood particle swarm
optimization for multi-objective flexible job-shop scheduling problems. Aydin and
Sevkli (2008) consider sequential and parallel VNS algorithms for job shop scheduling.
5.9.5 Flow shop scheduling
Blazewicz et al. (2005) use VNS for late work minimization in a two-machine flow
shop with common due date. In Pan et al. (2007a) VNS and three other metaheuristic
approaches are proposed for a no-wait flow shop problem. In Blazewicz et al. (2008)
VNS and two other metaheuristics are presented for the two-machine flow shop prob-
lem with weighted late work criterion and common due date. Zobolas et al. (2008)
design a GA/VNS hybrid to minimize makespan in permutation flow shop scheduling
problems. In Tasgetiren et al. (2004) a simple but very efficient local search, based on
VNS, is embedded in the PSO algorithm in order to solve the permutation flow shop
sequencing problem. Liao et al. (2007) apply VNS for flow shop scheduling problems
and Tasgetiren et al. (2007) consider the makespan and total flow time minimization
in the permutation flow shop sequencing problem. Czogalla and Fink (2008) exam-
ine the application of a PSO with VND as an embedded local search procedure for
the continuous flow-shop scheduling problem. Rahimi-Vahed et al. (2008)devisea
hybrid multi-objective algorithm based on shuffled frog-leaping algorithm and VNS
for a bi-criteria permutation flow shop scheduling problem. Chyu and Chen (2008)
propose several VNS for a lump-sum payment model for the resource-constrained
project scheduling problem.
5.9.6 Resource-constrained project scheduling
Fleszar and Hindi (2004) propose a solution for the resource-constrained project
scheduling problem by a VNS and Kolisch and Hartmann (2006) include VNS in
123
Variable neighbourhood search: methods and applications
an experimental investigation of heuristics for resource-constrained project schedul-
ing. Bouffard and Ferland (2007) improve simulated annealing with VNS to solve the
resource-constrained scheduling problem.
5.9.7 Car sequencing
Prandtstetter and Raidl (2008) use a hybrid VNS for the car sequencing problem and
Gavranovi´c(2008) applies VNS to car-sequencing problems with colours. Ribeiro
et al. (2008a) propose a set of heuristics based on the paradigms of the VNS and ILS
metaheuristics for a multi-objective real-life car sequencing problem with painting
and assembly line constraints and Ribeiro et al. (2008b) provide an efficient imple-
mentation of the VNS/ILS heuristic for this real-life car sequencing problem. Joly
and Frein (2008) use VNS to tackle an industrial car sequencing problem considering
paint and assembly shop objectives.
5.9.8 Other scheduling problems
Davidovi´cetal.(2005) use VNS heuristics for multiprocessor scheduling with com-
munication delays. Higgins et al. (2006) apply VNS to the scheduling of brand pro-
duction and shipping within a sugar supply chain and Lejeune (2006) also consider
supply chain planning. Liang and Chen (2007) tackle the redundancy allocation of
series-parallel systems, using a VNS algorithm.
Remde et al. (2007) use reduced VNS and hyperheuristic approaches to tackle
subproblems in an Exact/Hybrid heuristic for Workforce Scheduling. Xhafa (2007)
considers a hybrid evolutionary metaheuristic based on memetic algorithms and VNS
to job scheduling on computational grids. Liang et al. (2007) apply VNS to redundancy
allocation problems.
Lusa and Potts (2008) use a VNS algorithm for the constrained task allocation
problem. Almada-Lobo et al. (2008) report the use of a VNS approach to production
planning and scheduling in the glass container industry. Dahal et al. (2008) apply
a constructive search and VNS to tackle a complex real world workforce scheduling
problem. Abraham et al. (2008) propose a VNS/PSO hybrid for the scheduling problem
in distributed data-intensive computing environments. Liao and Liao (2008) apply an
ACO algorithm which uses a VNS as the local search to make it more efficient and
effective for scheduling in agile manufacturing. Naderi et al. (2008) propose a VNS
which uses advanced neighbourhood search structures for flexible flow line problems
with sequence dependent setup times.
5.10 Vehicle routing problems
5.10.1 TSP and extensions
VNS is used for the TSP and its extensions. Hansen and Mladenovi´c(1999,2006)
consider basic VNS for the euclidean TSP. Burke et al. (2001) apply guided VNS
methods for the asymmetric TSP. VNS for the Pickup and Delivery TSP is considered
123
P. Hansen et al.
in Carrabs et al. (2007). Hu and Raidl (2008) study the effectiveness of neighbourhood
structures within a VNS approach for the Generalized TSP.
5.10.2 VRP and extensions
Standard versions of the vehicle routing problem (VRP) have been solved by VNS
or hybrids. A VND is applied to the VRP with backhauls in Crispim and Brandao
(2001). Rousseau et al. (2002) use a VND to take advantage of different neighbourhood
structures for the VRP. An interesting development of reactive VNS for the VRP
with time windows appears in Bräysy (2003). Polacek et al. (2004) use a VNS for
the multi depot VRP with time windows. A hybrid metaheuristic merging VNS and
Tabu Search applied to the location-routing problem with non-linear costs can be
found in Melechovsky et al. (2005). Repoussis et al. (2006) propose a reactive greedy
randomized VNTS for the VRP with time windows. Irnich et al. (2006) introduce
sequential search as a generic technique for the efficient exploration of local-search
neighbourhoods such as VNS and consider its application to vehicle-routing problems.
Kytöjoki et al. (2007) propose an efficient VNS heuristic for very large scale vehicle
routing problems. Geiger and Wenger (2007) use VNS within an interactive resolution
method for multi-objective vehicle routing problems. Fleszar et al. (2008) propose an
effective VNS for the open VRP.
5.10.3 Practical applications
VNS has also been useful for practical applications of routing problems. Cowling
and Keuthen (2005) examine iterated approaches of the Large-Step Markov Chain
and VNS type and investigate their performance when used in combination with an
embedded search heuristic for routing optimization. A VNS-based on-line method
is proposed and tested in Goel and Gruhn (2008) for the general VRP. The solution
methodology proposed by Repoussis et al. (2007) hybridizes in a reactive fashion
systematic diversification mechanisms of Greedy Randomized Adaptive Search Pro-
cedures with VNS for intensifying local searching regarding a real life VRP.
5.10.4 Arc routing and waste collection
Hertz and Mittaz (2001) use a VND algorithm for the undirected capacitated arc
routing problem. Ghiani et al. (2002) use VNS to solve the capacitated arc routing
problem. Polacek et al. (2008) develop a basic VNS algorithm to solve the capacitated
arc routing problem with intermediate facilities. Nuortio et al. (2006) use VNS in an
improved route planning and scheduling of waste collection and transport and Del
Pia and Filippi (2006) use a VND algorithm for a real waste collection problem with
mobile depots.
5.10.5 Fleet sheet problems
Yepes and Medina (2006) present a three-step local search algorithm based on a
probabilistic VNS for the VRP with a heterogeneous fleet of vehicles and soft time
123
Variable neighbourhood search: methods and applications
windows. Paraskevopoulos et al. (2008) present a reactive VNTS for the heterogeneous
fleet VRP with time windows. Schmid et al. (2008) propose two hybrid procedures
based on a combination of an exact algorithm and a VNS approach for the distribution
of ready-mixed concrete using a heterogeneous fleet of vehicles. Imran et al. (2008)use
some adaptations of the VNS to solve a heterogeneous fleet vehicle routing problem.
5.10.6 Extended vehicle routing problems
Polacek et al. (2007) use VNS to assign customers to days and determine routes for a
travelling salesperson for scheduling periodic customer visits. Zhao et al. (2008) apply
a variable large neighbourhood search (VLNS) algorithm, which is a special case of
VNS for an inventory/routing problem in a three-echelon logistics system. Vogt et al.
(2007) present a heuristic for this problem based on a VNTS for the single vehicle
routing allocation problem. Hemmelmayr et al. (2008a) propose a VNS heuristic for
periodic routing problems. Liu and Chung (2008) propose a VNTS for the VRP with
backhauls and inventory and Liu et al. (2008) propose a modified VNS for solving
vehicle routing problems with backhauls and time windows. Subramanian et al. (2008)
present an iterated local search procedure, which uses a VND method to perform the
local search, for the VRP, with simultaneous pickup and delivery and a time limit.
5.11 Problems in biosciences and chemistry
VNS has been useful in recently emerging areas in Bioscience and Chemistry such as
Bio-informatics. Andreatta and Ribeiro (2002) propose VNS heuristics for the phy-
logeny problem and Ribeiro and Vianna (2005) use a GRASP with a VND heuristic
for this problem with a new neighbourhood structure. Kawashimo et al. (2006) apply
VNS to DNA Sequence Design and Liberti et al. (2008) propose a double VNS with
smoothing for the molecular distance geometry problem. Santana et al. (2008) illus-
trate another example of hybridization of metaheuristics through the combination of
VNS and Estimation Distribution Algorithms (EDAs). They present the first attempt
to combine these two methods testing it on the protein side chain placement prob-
lem. Belacel et al. (2004b) use VNS for Fuzzy Clustering of cDNA microarray gene
expression data and Draži´cetal.(2008) use a continuous VNS heuristic for finding the
three-dimensional structure of a molecule. Montemanni and Smith (2008) consider
the construction of constant GC-content DNA vodes via a VNS Algorithm.
A Multi-Start VNS hybrid (MSVNS) is applied, in Pelta et al. (2008), to the protein
structure comparison problem which is a very important problem in the bio-informatics
area. The Maximum Contact Map Overlap (Max-CMO) model of protein structure
comparison models the proteins as a graph of the contacts between the protein residues
to perform the comparison. The proposed MSVNS method is currently the best heuris-
tic algorithm for the Max-CMO model, both in terms of optimization and in terms of
the biological relevance of its results. The method is biologically relevant, since the
algorithm has proven to be good enough to detect similarities at SCOP’s family and
CATH’s architecture levels.
123
P. Hansen et al.
5.12 Continuous optimization
Several continuous optimization problems have also been successfully approached
with VNS. Mladenovi´cetal.(2008) propose a General VNS for continuous opti-
mization and Draži´cetal.(2006) a VNS-based software for Global Optimization.
Audet et al. (2008) deal with Nonsmooth optimization through Mesh Adaptive Direct
Search and VNS. Brimberg et al. (2006a) use VNS in a decomposition strategy for
large-scale continuous location-allocation problems. Solving the unconstrained opti-
mization problem by VNS has been successfully achieved in Toksari and Güner
(2007). Ling et al. (2008) use a modified VNS metaheuristic for max-bisection prob-
lems. Sevkli and Sevilgen (2008) consider the PSO hybridized with Reduced VNS for
continuous function optimization.
5.13 Other optimization problems
Some further optimization problems solved with VNS include the study of the
dynamics of handwriting (Caporossi et al. 2004), the problem of multi-item, single
level, capacitated, dynamic lot-sizing with set-up times (Hindi et al. 2003), the linear
ordering problem (García et al. 2006), the minimum cost berth allocation problem
(Hansen et al. 2008b) and the run orders problem in the presence of serial correla-
tion (Garroi et al. 2008).
Mori and Tsunokawa (2005) use a VNTS for capacitor placement in distribution
systems. Haugland (2007) develops a randomized search heuristic, which in some
sense resembles VNS, for the subspace selection problem. Hemmelmayr et al. (2008b)
apply solution approaches based on integer programming and VNS to organize the
delivery of blood products to Austrian hospitals for the blood bank of the Austrian
Red Cross for Eastern Austria. Claro and de Sousa (2008) propose a hybrid approach,
combining Tabu Search and VNS for a mean-risk multistage capacity investment
problem.
VNS is used to solve satisfiability problems. Hansen et al. (2000) use VNS
for the weighted maximum satisfiability problem. Ognjanovi´cetal.(2005), Jovanovi´c
et al. (2007) and Sevkli and Aydin (2007) use VNS for the probabilistic satisfiability
problem. Hansen and Perron (2008) use VNS to solve the subproblem in a column
generation approach which merges the local and global approaches to probabilistic
satisfiability. Loudni and Boizumault (2008) apply the (VNS/LDS+ CP) hybrid for
solving optimization problems in anytime contexts. The (VNS/LDS+ CP) procedure
combines a VNS scheme with Limited Discrepancy Search (LDS) using Constraint
Propagation (CP).
5.14 Discovery science
In all these applications VNS is used as an optimization tool. It can also lead to results
in “discovery science”, i.e., help in the development of theories. This has been done for
graph theory in a long series of papers with the common title “Variable neighbourhood
search for extremal graphs” and reporting on the development and applications of the
123
Variable neighbourhood search: methods and applications
system AutoGraphiX (AGX) (Caporossi and Hansen 2000,2004;Aouchiche et al.
2005a). This system addresses the following problems:
Find a graph satisfying given constraints;
Find optimal or near optimal graphs for an invariant subject to constraints;
Refute a conjecture;
Suggest a conjecture (or repair or sharpen one);
Provide a proof (in simple cases) or suggest an idea of proof.
A basic idea is then to consider all of these problems as parametric combinatorial
optimization problems on the infinite set of all graphs (or in practice some smaller
subset) with a generic heuristic. This is done by applying VNS to find extremal graphs,
with a given number nof vertices (and possibly also a given number of edges). Then
a VND with many neighbourhoods is used. Those neighbourhoods are defined by
modifications of the graphs such as the removal or addition of an edge, rotation of
an edge, and so forth. Once a set of extremal graphs, parameterized by their order, is
found, their properties are explored with various data mining techniques, leading to
conjectures, refutations and simple proofs or ideas of proof.
The current list of titles of papers in the series “VNS for extremal graphs” is given
in Table 1. Another list of papers, not included in this series is given in Table 2.
Papers in these two lists cover a variety of topics:
(i) Principles of the approach (1.1, 1.5) and its implementation (1.14);
(ii) Applications to spectral graph theory, e.g., bounds on the index for various
families of graphs, graphs maximizing the index subject to some conditions
(1.3, 1.11, 1.16, 1.17, 2.7);
(iii) Studies of classical graph parameters, e.g., independence, chromatic number,
clique number, average distance (1.13, 1.21, 1.22, 1.24, 1.25, 1.26, 2.8);
(iv) Studies of little known or new parameters of graphs, e.g., irregularity, proximity
and remoteness (1.9, 2.9)
(v) New families of graphs discovered by AGX, e.g., bags, which are obtained from
complete graphs by replacing an edge by a path, and bugs, which are obtained
by cutting the paths of a bag (1.15, 1.27);
(vi) Applications to mathematical chemistry, e.g., study of chemical graph energy,
and of the Randi´c index (1.4, 1.6, 1.7, 1.10, 1.18, 1.19, 2.2, 2.3, 2.6);
(vii) Results of a systematic study of 20 graph invariants, which led to almost 1500
new conjectures, more than half of which were proved by AGX and over 300
by various mathematicians (1.20);
(viii) Refutation or strengthening of conjectures from the literature (1.8, 2.1, 2.6);
(ix) Surveys and discussions about variousdiscovery systems in graph theory, assess-
ment of the state-of-the-art and the forms of interesting conjectures together with
proposals for the design of more powerful systems (2.4, 2.5).
6 Conclusions
The general schemes of VNS have been presented, discussed and illustrated by exam-
ples. In order to evaluate the VNS research program, one needs a list of the desirable
123
P. Hansen et al.
Tab l e 1 List of papers in the series “VNS for extremal graphs”
Author(s) Title
1.1 Caporossi and Hansen (2000) The AutoGraphiX System
1.2 Caporossi et al. (1999a) Finding graphs with extremal energy
1.3 Cvetkovic et al. (2001) On the largest eigenvalue of color-constrained trees
1.4 Caporossi et al. (1999c) Chemical trees with extremal connectivity index
1.5 Caporossi and Hansen (2004) Three ways to automate finding conjectures
1.6 Hansen and Mélot (2003) Analysing bounds for the connectivity index
1.7 Fowler et al. (2001) Polyenes with maximum HOMO-LUMO gap
1.8 Aouchiche et al. (2001) Variations on Graffiti 105
1.9 Hansen and Mélot (2005) Bounding the irregularity of a graph
1.10 Gutman et al. (2005) Comparison of irregularity indices for chemical trees
1.11 Belhaiza et al. (2007) Bounds on algebraic connectivity
1.12 Hansen et al. (2005b) A note on the variance of bounded degrees in graphs
1.13 Aouchiche and Hansen (2005) “A propos de la maille” (French)
1.14 Aouchiche et al. (2005a) The AutoGraphiX 2 system
1.15 Hansen and Stevanovi´c(2005) On bags and bugs
1.16 Aouchiche et al. (2008a) Some conjectures related to the largest eigenvalue of a graph
1.17 Aouchiche et al. (2009b) Further conjectures and results about the index
1.18 Aouchiche et al. (2006) Conjectures and results about the Randic index
1.19 Aouchiche et al. (2007d) Further conjectures and results about the Randic index
1.20 Aouchiche et al. (2007a) Automated comparison of graph invariants
1.21 Aouchiche et al. (2008b) Conjectures and results about the independence number
1.22 Aouchiche et al. (2009a) Extending bounds for independence to upper irredundance
1.23 Hansen and Vukiˇcevi´c (2009) On the Randic index and the chromatic number
1.24 Sedlar et al. (2007a) Conjectures and results about the clique number
1.25 Sedlar et al. (2007b) Products of connectivity and distance measures
1.26 Aouchiche et al. (2007c) “Nouveaux rèsultats sur la maille” (French)
1.27 Aouchiche et al. (2007b) Families of extremal graphs
properties of metaheuristics. The following eight of these are presented in Hansen and
Mladenovi´c (2003):
(i) Simplicity: the metaheuristic should be based on a simple and clear principle,
which should be widely applicable;
(ii) Precision: the steps of the metaheuristic should be formulated in precise
mathematical terms, independent of possible physical or biological analogies
which may have been the initial source of inspiration;
(iii) Coherence: all steps of the heuristics for particular problems should follow
naturally from the principle of the metaheuristic;
(iv) Efficiency: heuristics for particular problems should provide optimal or near-
optimal solutions for all or at least most realistic instances. Preferably, they
123
Variable neighbourhood search: methods and applications
Tab l e 2 A further list of papers on AGX
Author(s) Title
2.1 Caporossi et al. (1999b) Trees with Palindromic Hosoya Polynomials
2.2 Gutman et al. (1999) Alkanes with small and large Randi´c connectivity indices
2.3 Hansen (2002) Computers in Graph Theory
2.4 Hansen and Mélot (2002) Computers and Discovery in Algebraic Graph Theory
2.5 Caporossi et al. (2003) Graphs with maximum connectivity index
2.6 Hansen (2005) How far is, should and could be conjecture-making
in graph theory an automated process?
2.7 Hansen et al. (2005a) What forms do interesting conjectures have in graph theory?
2.8 Aouchiche et al. (2005b) AutoGraphiX: A Survey
2.9 Aouchiche and Hansen (2007a) Automated Results and Conjectures on Average Distance
in Graphs
2.10 Aouchiche and Hansen (2007b) On a Conjecture about the Randic Index
2.11 Stevanovic et al. (2008) On the Spectral Radius of Graphs with a Given
Domination Number
2.12 Aouchiche and Hansen (2009) Bounding Average Distance Using Minimum Degree
2.13 Aouchiche and Hansen (2008) Nordhaus-Gaddum Relations for Proximity and Remoteness
in Graphs
should find optimal solutions for most problems of benchmarks for which such
solutions are known, when available;
(v) Effectiveness: heuristics for particular problems should take a moderate com-
puting time to provide optimal or near-optimal solutions;
(vi) Robustness: the performance of heuristics should be consistent over a variety
of instances, i.e., not merely fine-tuned to some training set and less good
elsewhere;
(vii) User-friendliness: heuristics should be clearly expressed, easy to understand
and, most important, easy to use. This implies they should have as few parame-
ters as possible, ideally none;
(viii) Innovation: preferably, the principle of the metaheuristic and/or the efficiency
and effectiveness of the heuristics derived from it should lead to new types of
application.
This list has been completed with three more items added by one member of the
present team and his collaborators:
(ix) Generality: the metaheuristic should lead to good results for a wide variety of
problems;
(x) Interactivity: the metaheuristic should allow the user to incorporate his knowl-
edge to improve the resolution process;
(xi) Multiplicity: the metaheuristic should be able to present several near optimal
solutions from which the user can choose one.
123
P. Hansen et al.
As argued here and above, VNS possesses, to a great extent, all of the above proper-
ties. This has led to heuristics which are among the very best ones for many problems.
Interest in VNS is clearly growing at speed. This is evidenced by the increasing number
of papers published each year on this topic (ten years ago, only a few; five years ago,
about a dozen; and about 50 in 2007). Moreover, the 18th EURO Mini conference held
in Tenerife in November 2005 was entirely devoted to VNS. It led to special issues of
IMA Journal of Management Mathematics in 2007 (Melián and Mladenovi´c 2007),
and European Journal of Operational Research (Hansen et al. 2008a) and Journal of
Heuristics (Moreno-Vega and Melián 2008) in 2008. In retrospect, it appears that the
good shape of the VNS research program is due to the following decisions, strongly
influenced by Karl Popper’s philosophy of science (Popper 1959): (i) in devising
heuristics favour insight over efficiency (which comes later) and (ii) learn from the
heuristics mistakes.
Acknowledgments The first author was partly supported by NSERC grant number FQRNT. The second
author was partly supported by the Serbian Ministry of Science, grant number 144007. The third author was
partly supported by project TIN2005-08404-C04-03 of the Spanish Government (with financial support
from the E.U. under the FEDER project) and project PI042005/044 of the Canary Government.
References
Abraham A, Liu H, Zhao M (2008) Particle swarm scheduling for work-flow applications in distributed
computing environments. Stud Comput Intell 128:327–342
Alba E, Domínguez E (2006) Comparativeanalysis of modern optimization tools for the p-median problem.
Stat Comput 16(3):251–260
Almada-Lobo B, Oliveira JF, Carravilla MA (2008) Production planning and scheduling in the glass con-
tainer industry: A VNS approach. Int J Prod Econ 114(1):363–375
Aloise DJ, Aloise D, Rocha CTM, Ribeiro CC, Ribeiro JC, Moura LSS (2006) Scheduling workover rigs
for onshore oil production. Discrete Appl Math 154(5):695–702
Andreatta A, Ribeiro C (2002) Heuristics for the phylogeny problem. J Heuristics 8(4):429–447
Anghinolfi D, Paolucci M (2007) Parallel machine total tardiness scheduling with a new hybrid metaheuris-
tic approach. Comput Oper Res 34(11):3471–3490
Aouchiche M, Hansen P (2005) Recherche à voisinage variable de graphes extrèmes 13. À propos de la
maille (French). RAIRO Oper Res 39:275–293
Aouchiche M, Hansen P (2007a) Automated results and conjectures on average distance in graphs. Graph
Theory Paris Trends Math VI:21–36
Aouchiche M, Hansen P (2007b) On a conjecture about the Randic index. Discrete Math 307:262–265
Aouchiche M, Hansen P (2008) Nordhaus-Gaddum relations for proximity and remoteness in graphs. Les
Cahiers du GERAD G-2008-36
Aouchiche M, Hansen P (2009) Bounding average distance using minimum degree. Graph Theory Notes
New York (in press)
Aouchiche M, Caporossi G, Cvetkovi´c D (2001) Variable neighborhood search for extremal graphs 8.
Variations on Graffiti 105. Congressus Numerantium 148:129–144
Aouchiche M, Bonnefoy JM, Fidahoussen A, Caporossi G, Hansen P, Hiesse L, Lacheré J, Monhait A
(2005a) Variable neighborhood search for extremal graphs 14. The AutoGraphiX 2 system. In: Lib-
erti L, Maculan N (eds) Global Optimization: from Theory to Implementation. Springer, Berlin,
pp 281–309
Aouchiche M, Caporossi G, Hansen P, Laffay M (2005b) AutoGraphiX: a survey. Electron Notes Discrete
Math 22:515–520
Aouchiche M, Hansen P, Zheng M (2006) Variable neighborhood search for extremal graphs 18. Conjec-
tures and results about the Randic index MATCH. Commun Math Comput Chem 56(3):541–550
123
Variable neighbourhood search: methods and applications
Aouchiche M, Caporossi G, Hansen P (2007a) Variable Neighborhood search for extremal graphs 20.
Automated comparison of graph invariants. MATCH. Commun Math Comput Chem 58(2):365–384
Aouchiche M, Caporossi G, Hansen P (2007b) Variable neighborhood search for extremal graphs 27.
Families of extremal graphs. Les Cahiers du GERAD G-2007-87
Aouchiche M, Favaron O, Hansen P (2007c) Recherche à voisinage variable de graphes extrèmes 26.
Nouveaux résultats sur la maille (French). Les Cahiers du GERAD G-2007-55
Aouchiche M, Hansen P, Zheng M (2007d) Variable Neighborhood Search for Extremal Graphs 19. Further
Conjectures and Results about the Randic Index. MATCH. Commun Math Comput Chem 58(1):
83–102
Aouchiche M, Bell FK, Cvetkovi´c D, Hansen P, Rowlinson P, Simi´c SK, Stevanovi´c D (2008a) Variable
neighborhood search for extremal graphs 16. Some conjectures related to the largest eigenvalue of a
graph. Eur J Oper Res 191(3):661–676
Aouchiche M, Brinkmann G, Hansen P (2008b) Variable neighborhood search for extremal graphs 21.
Conjectures and results about the independence number. Discrete Appl Math 156(13):2530–2542
Aouchiche M, Favaron O, Hansen P (2009a) Variable neighborhood search for extremal graphs 22. Extend-
ing bounds for independence to upper irredundance. Discrete Appl Math (in press)
Aouchiche M, Hansen P, Stevanovi´c D (2009b) Variable neighborhood search for extremal graphs 17.
Further conjectures and results about the index Discusiones Mathematicae: Graph Theory (in press)
Archetti C, Hertz A, Speranza MG (2007) Metaheuristics for the team orienteering problem. J Heuristics
13(1):49–76
Audet C, Brimberg J, Hansen P, Mladenovi´c N (2004) Pooling problem: alternate formulation and solution
methods. Manage Sci 50:761–776
Audet C, Báchard V, Le Digabel S (2008) Nonsmooth optimization through mesh adaptive direct search
and variable neighborhood search. J Global Optim 41(2):299–318
Avanthay C, Hertz A, Zufferey N (2003) A variable neighborhood search for graph coloring. Eur J Oper
Res 151(2):379–388
Aydin ME, Sevkli M (2008) Sequential and parallel variable neighborhood search algorithms for job shop
scheduling. Stud Comput Intell 128:125–144
Baum EB (1986) Toward practical ‘neural’ computation for combinatorial optimization problems.
In: Denker J (ed) Neural networks for computing. American Institute of Physics, College Park (1986)
Belacel N, Hansen P, Mladenovi´c N (2002) Fuzzy J-means: a new heuristic for fuzzy clustering. Pattern
Recognit 35(10):2193–2200
Belacel N, ˇ
Cuperlovi´c-Culf M, Laflamme M, Ouellette R (2004a) Fuzzy J-means and VNS methods for
clustering genes from microarray data. Bioinformatics 20(11):1690–1701
Belacel N, ˇ
Cuperlovi´c-Culf M, Ouellette R, Boulassel MR (2004b) The variable neighborhood search meta-
heuristic for fuzzy clustering cDNA microarray gene expression data. In: Hamza MH (ed) Artificial
Intelligence and Applications. Acta Press, Calgary
Belacel N, Raval HB, Punnen AP (2007) Learning multicriteria fuzzy classification method PROAFTN
from data. Comput Oper Res 34(7):1885–1898
Belhaiza S, de Abreu N, Hansen P, Oliveira C (2007) Variable neighborhood search for extremal graphs
11. Bounds on algebraic connectivity. In: Avis D, Hertz A, Marcotte O (eds) Graph Theory and
Combinatorial Optimization, pp 1–16
Beltrán JD, Calderón JE, Jorge-Cabrera R, Moreno-Pérez JA,Moreno-Vega JM (2004) GRASP-VNS hybrid
for the strip packing problem. In Hybrid Metaheuristics 2004, pp 79–90
Benati S (2008) Categorical data fuzzy clustering: an analysis of local search heuristics. Comput Oper Res
35(3):766–775
Benati S, Hansen P (2002) The maximum capture problem with random utilities: problem formulation and
algorithms. Eur J Oper Res 143(3):518–530
Bischoff M, Dächert K (2008) Allocation search methods for a generalized class of location-allocation
problems. Eur J Oper Res 192(3):793–807
Blazewicz J, Pesch E, Sterna M, Werner F (2005) Metaheuristics for late work minimization in two-machine
flow shop with common due date. Lect Notes Artif Intell 3698:222–234
Blazewicz J, Pesch E, Sterna M, Werner F (2008) Metaheuristic approaches for the two-machine flow-shop
problem with weighted late work criterion and common due date. Comput Oper Res 35(2):574–599
Bock S, Hoberg K (2007) Detailed layout planning for irregularly-shaped machines with transportation
path design. Eur J Oper Res 177(2):693–718
123
P. Hansen et al.
Bouffard V, Ferland JA (2007) Improving simulated annealing with variable neighborhood search to solve
the resource-constrained scheduling problem. J Scheduling 10(6):375–386
Bräysy O (2003) A reactive variable neighborhood search for the vehicle routing problem with time win-
dows. INFORMS J Comput 15(4):347–368
Brimberg J, Mladenovi´c N (1996) A variable neighborhood algorithm for solving the continuous location-
allocation problem. Stud Locational Anal 10:1–12
Brimberg J, Hansen P, Mladenovi´c N, Taillard É (2000) Improvements and comparison of heuristics for
solving the multisource Weber problem. Oper Res 48(3):444–460
Brimberg J, Hansen P, Lih K-W, Mladenovi´c N, Breton M (2003) An oil pipeline design problem. Oper
Res 51(2):228–239
Brimberg J, Mladenovi´c N, Salhi S (2004) The multi-source Weber problem with constant opening cost.
J Oper Res Soc 55:640–646
Brimberg J, Hansen P, Mladenovi´c N (2006a) Decomposition strategies for large-scale continuous location–
allocation problems. IMA J Manage Math 17:307–316
Brimberg J, Uroševi´c D, Mladenovi´c N (2006b) Variable neighborhood search for the vertex weighted
k-cardinality tree problem. Eur J Oper Res 171(1):74–84
Brimberg J, Hansen P, Laporte G, Mladenovi´cN,Uroševi´c D (2008a) The maximum return-on-investment
plant location problem with market share. J Oper Res Soc 59(3):399–406
Brimberg J, Mladenovi´cN,Uroševi´c D (2008b) Local and variable neighborhood search for the k-
cardinality subgraph problem. J Heuristics 14(5):501–517
Brusco M, Steinley D (2007a) A variable neighborhood search method for generalized blockmodeling of
two-mode binary matrices. J Math Psychol 51(5):325–338
Brusco MJ, Steinley D (2007b) A comparison of heuristic procedures for minimum within-cluster sums of
squares partitioning. Psychometrika 72(4):583–600
Brusco MJ, Köhn H-F, Stahl S (2008) Heuristic implementation of dynamic programming for matrix per-
mutation problems in combinatorial data analysis. Psychometrika 73(3):503–522
Burke EK, Kendall G (2005) Search methodologies. Introductory tutorials in optimization and decision
support techniques. Springer, Berlin (2005)
Burke EK, Cowling P, Keuthen R (2001) Effective local and guided variable neighborhood search methods
for the asymmetric travelling salesman problem. Lect Notes Comput Sci 2037:203–212
Burke EK, De Causmaecker P, Petrovic S, Vanden Berghe G (2004) Variable neighborhood search for nurse
rostering problems In: Resende M, et al (eds) Metaheuristics: computer decision-making. Kluwer,
Dordrecht, pp 153–172
Burke EK, Curtois T, Post G, Qu R, Veltman B (2008) A hybrid heuristic ordering and variable neighbour-
hood search for the nurse rostering problem. Eur J Oper Res 188(2):330–341
Canuto S, Resende M, Ribeiro C (2001) Local search with perturbations for the prize-collecting Steiner
tree problem in graphs. Networks 31(3):201–206
Caporossi G, Hansen P (2000) Variable neighborhood search for extremal graphs 1. The AutoGraphiX
system. Discrete Math 212:29–44
Caporossi G, Hansen P (2004) Variable neighborhood search for extremal graphs 5. Three ways to automate
finding conjectures. Discrete Math 276(1–3):81–94
Caporossi G, Cvetkovi´c D, Gutman I, Hansen P (1999a) Variable neighborhood search for extremal graphs
2. Finding graphs with extremal energy. J Chem Inform Comput Sci 39:984–996
Caporossi G, Dobrynin AA, Gutman I, Hansen P (1999b) Trees with palindromic Hosoya polynomials.
Graph Theory Notes New York 37:10–16
Caporossi G, Gutman I, Hansen P (1999c) Variable neighborhood search for extremal graphs 4. Chemical
trees with extremal connectivity index. Comput Chem 23(5):469–477
Caporossi G, Gutman I, Hansen P, Pavlovi´c L (2003) Graphs with maximum connectivity index. Comput
Biol Chem 27:85–90
Caporossi G, Alamargot D, Chesnet D (2004) Using the computer to study the dynamics of the handwriting
processes. Lect Notes Comput Sci 3245:242–254
Carrabs F, Cordeau J-F, Laporte G (2007) Variable neighbourhood search for the pickup and delivery
traveling salesman problem with LIFO loading. INFORMS J Comput 19(4):618–632
Carrizosa E, Martín-Barragán B, Plastria F, Romero Morales D (2007) On the selection of the globally
optimal prototype subset for nearest-neighbor classification. INFORMS J Comput 19(3):470–479
123
Variable neighbourhood search: methods and applications
Chen C-L, Chen C-L (2008) Hybrid metaheuristic for unrelated parallel machine scheduling with sequence-
dependent setup times. Int J Adv Manufact Technol (in press). Published online: 26 August 2008.
doi:10.1007/s00170-008-1692-1
Chyu C-C, Chen Z-J (2008) Scheduling jobs under constant period-by-period resource availability to max-
imize project profit at a due date. Int J Adv Manufact Technol (in press). Published online: 18 July
2008. doi:10.1007/s00170-008-1614-2
Claro J, de Sousa JP (2008) A multiobjective metaheuristic for a mean-risk multistage capacity investment
problem. J Heuristics (in press). Published online: 24 July 2008. doi:10.1007/s10732-008-9090-2
Consoli S, Darby-Dowman K, Mladenovi´c N, Moreno Pérez JA (2008) Greedy randomized adaptive search
and variable neighbourhood search for the minimum labelling spanning tree problem. Eur J Oper Res.
Available online 15 March 2008. doi:10.1016/j.ejor.2008.03.014
Costa MC, Monclar FR, Zrikem M (2002) Variable neighborhood decomposition search for the optimization
of power plant cable layout. J Intell Manufact 13(5):353–365
Cote P, Wong T, Sabourin R (2005) A hybrid multi-objective evolutionary algorithm for the uncapacitated
exam proximity problem. Lect Notes Comput Sci 3616:294–312
Cowling PI, Keuthen R (2005) Embedded local search approaches for routing optimization. Comput Oper
Res 32(3):465–490
Crainic T, Gendreau M, Hansen P, Mladenovi´c N (2004) Cooperative parallel variable neighborhood search
for the p-median. J Heuristics 10:289–310
Crispim J, Brandao J (2001) Reactive tabu search and variable neighborhood descent applied to the vehicle
routing problem with backhauls. In: MIC’2001, pp 631–636, Porto. 2001
Cvetkovic D, Simic S, Caporossi G, Hansen P (2001) Variable neighborhood search for extremal graphs 3.
On the largest eigenvalue of color-constrained trees. Linear Multilinear Algebra 49:143–160
Czogalla J, Fink A (2008) On the effectiveness of particle swarm optimization and variable neighborhood
descent for the continuous flow-shop scheduling problem. Stud Comput Intell 128:61–89
Dahal K, Remde S, Cowling P, Colledge N (2008) Improving metaheuristic performance by evolving a
variable fitness function. Lect Notes Comput Sci 4972:170–181
Davidon WC (1959) Variable metric algorithm for minimization. Argonne National Laboratory Report
ANL-5990
Davidovi´c T, Hansen P, Mladenovi´c N (2005) Permutation-based genetic, tabu, and variable neighborhood
search heuristics for multiprocessor scheduling with communication delays. Asia-Pacific J Oper Res
22(3):297–326
De Paula MR, Ravetti MG, Mateus GR, PardalosPM (2007) Solving parallel machines scheduling problems
with sequence-dependent setup times using Variable Neighbourhood Search. IMA J Manage Math
18(2):101–115
De Souza MC, Martins P (2008) Skewed VNS enclosing second order algorithm for the degree constrained
minimum spanning tree problem. Eur J Oper Res 191(3):677–690
Degila JR, Sansò B (2004) Topological design optimization of a Yottabit-per-second lattice network. IEEE
J Selected Areas Commun 22(9):1613–1625
Del Pia A, Filippi C (2006) A variable neighborhood descent algorithm for a real waste collection problem
with mobile depots. Int Trans Oper Res 13(2):125–141
Desrosiers J, Mladenovi´c N, Villeneuve D (2005) Design of balanced MBA student teams. J Oper Res Soc
56(1):60–66
Dias TCS, De Sousa GF, Macambira EM, Cabral LDAF, Fampa MHC (2006) An efficient heuristic for the
ring star problem. Lect Notes Comput Sci 4007:24–35
Domínguez-Marín P, Nickel S, Hansen P, Mladenovi´c N (2005) Heuristic procedures for solving the dis-
crete ordered median problem. Ann Oper Res 136(1):145–173
Draži´c M, Kovacevic-Vujci´c V, Cangalovi´c M, Mladenovi´c N (2006) GLOB — A new VNS-based soft-
ware for global optimization In: Liberti L, Maculan N (eds) Global Optimization: from Theory to
Implementation. Springer, Berlin, pp 135–144
Draži´c M, Lavor C, Maculan N, Mladenovi ´c N (2008) A continuous variable neighborhood search heuristic
for finding the three-dimensional structure of a molecule. Eur J Oper Res 185(3):1265–1273
Drezner Z, Hahn PM, TaillardED (2005) Recent advances for the quadratic assignment problem with special
emphasis on instances that are difficult for meta-heuristic methods. Ann Oper Res 139(1):65–94
Duarte A, Sanchez A, Fernandez F, Cabido R (2005) A low-level hybridization between memetic algo-
rithm and VNS for the max-cut problem. GECCO 2005—Genetic and Evolutionary Computation
Conference 999–1006
123
P. Hansen et al.
Du Merle O, Villeneuve D, Desrosiers J, Hansen P (1999) Stabilized column generation. Discrete Math
194(1–3):229–237
Du Merle O, Hansen P, Jaumard B, Mladenovi´c N (2000) An interior point algorithm for minimum sum-
of-squares clustering. SIAM J Sci Comput 21:1485–1505
Fathali J, Kakhki HT (2006) Solving the p-median problem with pos/neg weights by variable neighborhood
search and some results for special cases. Eur J Oper Res 170(2):440–462
Festa P, Pardalos PM, Resende MGC, Ribeiro CC (2002) Randomized heuristics for the MAX-CUT prob-
lem. Optim Methods Softw 17(6):1033–1058
Fischetti M, Lodi A (2003) Local branching. Math Program 98(1–3):23–47
Fischetti M, Polo C, Scantamburlo M (2004) A local branching heuristic for mixed-integer programs with
2-level variables, with an application to a telecommunication network design problem. Networks
44(2):61–72
Fletcher R, Powell MJD (1963) Rapidly convergent descent method for minimization. Comput J 6:163–168
Fleszar K, Hindi KS (2002) New heuristics for one-dimensional bin-packing. Comput Oper Res 29:821–839
Fleszar K, Hindi KS (2004) Solving the resource-constrained project scheduling problem by a variable
neighborhood search. Eur J Oper Res 155(2):402–413
Fleszar K, Hindi KS (2008) An effective VNS for the capacitated p-median problem. Eur J Oper Res
191(3):612–622
Fleszar K, Osman IH, Hindi KS (2008) A variable neighbourhood search algorithm for the open vehicle
routing problem. Eur J Oper Res. Available online 22 November 2007. doi:10.1016/j.ejor.2007.06.
064
Fowler PW, Hansen P, Caporossi G, Soncini A (2001) Variable neighborhood search for extremal graphs
7. Polyenes with maximum HOMO-LUMO gap. Chem Phys Lett 49:143–146
Gagné C, Gravel M, Price WL (2005) Using metaheuristic compromise programming for the solution of
multiple-objective scheduling problems. J Oper Res Soc 56:687–698
Galinier P, Hertz A (2006) A survey of local search methods for graph coloring. Comput Oper Res
33(9):2547–2562
Gao J, Sun L, Gen M (2008) A hybrid genetic and variable neighborhood descent algorithm for flexible job
shop scheduling problems. Comput Oper Res 35(9):2892–2907
García-López F, Melián-Batista B, Moreno-Pérez JA, Moreno-Vega JM (2002) The parallel variable neigh-
borhood search for the p-median problem. J Heuristics 8(3):375–388
García CG, Pérez-Brito D, Campos V, Martí R (2006) Variable neighborhood search for the linear ordering
problem. Comput Oper Res 33(12):3549–3565
Garey MR, Johnson DS (1978) Computers and intractability: a guide to the theory of NP-completeness.
Freeman, New York
Garroi J-J, Goos P, Sörensen K (2008) A variable-neighbourhood search algorithm for finding optimal run
orders in the presence of serial correlation. J Stat Plan Inference 139(1):30–44
Gavranovi´c H (2008) Local search and suffix tree for car-sequencing problem with colors. Eur J Oper Res
191(3):972–980
Geiger MJ, Wenger W (2007) On the interactive resolution of multi-objective vehicle routing problems.
Lect Notes Comput Sci 4403:687–699
Ghiani G, Hertz A, Laporte G (2002) Recent algorithmic advances for arc routing problems. In: Kozan E,
Ohuchir A (eds) Operations Research/Management Science at Work. Kluwer, Boston, pp 1–20
Gill P, Murray W, Wright M (1981) Practical optimization. Academic Press, London
Glover F, Kochenberger G (eds) (2003) Handbook of Metaheuristics. Kluwer, Dordrecht
Goel A, Gruhn V (2008) A general vehicle routing problem. Eur J Oper Res 191(3):650–660
Griffith RE, Stewart RA (1961) A nonlinear programming technique for the optimization of continuous
processing systems. Manage Sci 7:379–392
Gupta SR, Smith JS (2006) Algorithms for single machine total tardiness scheduling with sequence depen-
dent setups. Eur J Oper Res 175(2):722–739
Gutjahr WJ, Katzensteiner S, Reiter P (2007) A VNS algorithm for noisy problems and its application to
project portfolio analysis. Lect Notes Comput Sci 4665:93–104
Gutman I, Miljkovi´c O, Caporossi G, Hansen P (1999) Alkanes with small and large Randi´c connectivity
indices. Chem Phys Lett 306:366–372
Gutman I, Hansen P, Mélot H (2005) Variable neighborhood search for extremal graphs 10. Comparison
of irregularity indices for chemical trees. J Chem Inform Model 45:222–230
123
Variable neighbourhood search: methods and applications
Han H, Ye J, Lv Q (2007) A VNS-ANT Algorithm to QAP. In: Third International Conference on Natural
Computation, vol 3, pp 426–430
Hansen P (2002) Computers in Graph Theory. Graph Theory Notes, New York, XLIII:20–39
Hansen P (2005) How faris, should and could be conjecture-making in graph theory an automated process?.
Graph Discov Dimacs Ser Discrete Math Theor Comput Sci 69:189–229
Hansen P, Mélot H (2002) Computers and discovery in algebraic graph theory. Linear Algebra Appl 356
(1–3):211–230
Hansen P, Mélot H (2003) Variable neighborhood search for extremal graphs 6. Analysing bounds for the
connectivity index. J Chem Inform Comput Sci 43:1–14
Hansen P, Mélot H (2005) Variable neighborhood search for extremal graphs 9. Bounding the irregularity
of a graph. Graphs Discov 69:253–264
Hansen P, Mladenovi´c N (1997) Variable neighborhood search for the p-median. Location Sci 5:207–226
Hansen P, Mladenovi´c N (1999) An introduction to variable neighborhood search. In: Voss S, et al (eds)
Metaheuristics, Advances and Trends in Local Search Paradigmsfor Optimization. Kluwer, Dordrecht,
pp 433–458
Hansen P, Mladenovi´c N (2001a) Variable neighborhood search: principles and applications. Eur J Oper
Res 130:449–467
Hansen P, Mladenovi´c N (2001b) J-Means: a new local search heuristic for minimum sum-of-squares
clustering. Pattern Recognit 34:405–413
Hansen P, Mladenovi´c N (2001c) Developments of variable neighborhood search. In: Ribeiro C, Hansen P
(eds) Essays and surveys in metaheuristics. Kluwer, Dordrecht, pp 415–440
Hansen P, Mladenovi´c N (2003) Variable neighborhood search. In: Glover F, Kochenberger G (eds) Hand-
book of Metaheuristics. Kluwer, Dordrecht, pp 145–184
Hansen P, Mladenovi´c N (2005) Variable Neighbourhood Search. In: Burke EK, Kendall G (eds) Search
methodologies. Introductory tutorials in optimization and decision support techniques. Springer,
pp 211–238
Hansen P, Mladenovi´c N (2006) First improvement may be better than best improvement: An empirical
study. Discrete Appl Math 154:802–817
Hansen P, Mladenovi´c N (2008) Complement to a comparative analysis of heuristics for the p-median
problem. Stat Comput 18(1):41–46
Hansen P, Perron S (2007) Algorithms for L1-embeddability and related problems. J Classification
24(2):251–275
Hansen P, Perron S (2008) Merging the local and global approaches to probabilistic satisfiability. Int J
Approx Reason 47(2):125–140
Hansen P, Stevanovi´c D (2005) Variable neighborhood search for extremal graphs 15. On bags and bugs.
Discrete Appl Math 156(7):986–997
Hansen P, Vukiˇcevi´c D (2009) Variable neighborhood search for extremal graphs 23. On the Randic index
and the chromatic number. Discrete Math (in press)
Hansen P, Jaumard B, Mladenovi´c N, Parreira A (2000) Variable neighborhood search for weighted maxi-
mum satisfiability problem. Les Cahiers du GERAD G–2000–62, HEC Montréal, Canada
Hansen P, Mladenovi´c N, Pérez-Brito D (2001) Variable neighborhood decomposition search. J Heuristics
7(4):335–350
Hansen P, Mladenovi´cN,Uroševi´c D (2004) Variable neighborhood search for the maximum clique. Dis-
crete Appl Math 145(1):117–125
Hansen P, Aouchiche M, Caporossi G, Mélot H, Stevanovi´c D (2005a) What forms do interesting conjec-
tures have in graph theory? Graph Discov Dimacs Ser Discrete Math Theor Comput Sci 69:231–251
Hansen P, Mélot H, Gutman I (2005b) Variable neighborhood search for extremal graphs 12. A note on the
variance of bounded degrees in graphs. MATCH Commun Math Comput Chem 54:221–232
Hansen P, Mladenovi´cN,Uroševi´c D (2006) Variable neighborhood search and local branching. Comput
Oper Res 33(10):3034–3045
Hansen P, Brimberg J, Uroševi´c D, Mladenovi´c N (2007a) Primal-dual variable neighborhood search for
the simple plant location problem. INFORMS J Comput 19(4):552–564
Hansen P, Lazi´c J, Mladenovi´c N (2007b) Variable neighbourhood search for colour image quantization.
IMA J Manage Math 18(2):207–221
Hansen P, Mladenovi´c N, Moreno Pérez JA (2008a) Variable neighborhood search. Eur J Oper Res
191(3):593–595
123
P. Hansen et al.
Hansen P, Oˇguz C, Mladenovi´c N (2008b) Variable neighborhood search for minimum cost berth allocation.
Eur J Oper Res 191(3):636–649
Haugland D (2007) A bidirectional greedy heuristic for the subspace selection problem. Lect Notes Comput
Sci 4638:162–176
Hemmelmayr VC, Doerner KF, Hartl RF (2008a) A variable neighborhood search heuristic for the periodic
routing problems. Eur J Oper Res. Available online 13 November 2007. doi:10.1016/j.ejor.2007.08.
048
Hemmelmayr V, Doerner KF, Hartl RF, Savelsbergh MWP (2008b) Delivery strategies for blood products
supplies OR Spectrum. Available online 19 March 2008. doi:10.1007/s00291-008-0134-7
Hertz A, Mittaz M (2001) A variable neighborhood descent algorithm for the undirected capacitated arc
routing problem. Transp Sci 35(4):425–434
Hertz A, Plumettaz M, Zufferey N (2008) Variable space search for graph coloring. Discrete Appl Math
156(13):2551–2560
Higgins A, Beashel G, Harrison A (2006) Scheduling of brand production and shipping within a sugar
supply chain. J Oper Res Soc 57:490–498
Hindi KS, Fleszar K, Charalambous C (2003) An effective heuristic for the CLSP with setup times. J Oper
Res Soc 54(5):490–498
Höller H, Melián B, Voss S (2008) Applying the pilot method to improve VNS and GRASP metaheuristics
for the design of SDH/WDM networks. Eur J Oper Res 191(3):691–704
Hu B, Raidl GR (2008) Effective neighborhood structures for the generalized traveling salesman problem.
Lect Notes Comput Sci 4972:36–47
Hu B, Leitner M, Raidl GR (2008) Combining variable neighborhood search with integer linear program-
ming for the generalized minimum spanning tree problem. J Heuristics 14(5):501–517
Imran A, Salhi S, Wassan NA (2008) A variable neighborhood-based heuristic for the heterogeneous fleet
vehicle routing problem. Eur J Oper Res (in press). Published online: 29 July 2008. doi:10.1016/j.
ejor.2008.07.022
Irnich S, Funke B, Grünert T (2006) Sequential search and its application to vehicle-routing problems.
Comput Oper Res 33(8):2405–2429
Jabalameli MS, Ghaderi A (2008) Hybrid algorithms for the uncapacitated continuous location-allocation
problem. The Int J Adv Manufact Technol 37(1–2):202–209
Jovanovi´c D, Mladenovi´c N, Ognjanovi´c Z (2007) Variable neighborhood search for the probabilistic
satisfiability problem. In: Doerner KF, Gendreau M, Greistorfer P, Gutjahr W, Hartl RF, Reimann M
(eds) Metaheuristics. Progress in Complex Systems Optimization. Springer, Berlin, pp 173–188
Joly A, Frein Y (2008) Heuristics for an industrial car sequencing problem considering paint and assembly
shop objectives. Comput Ind Eng 55(2):295–310
Jornsten K, Lokketangen A (1997) Tabu search for weighted k-cardinality trees. Asia-Pac J Oper Res
14(2):9–26
Karam A, Caporossi G, Hansen P (2007) Arbitrary-norm hyperplane separation by VariableNeighbourhood
Search. IMA J Manage Math 18(2):173–190
Kawashimo S, Ono H, Sadakane K, Yamashita M (2006) DNA sequence design by dynamic neighborhood
searches. Lect Notes Comput Sci 4287:157–171
Kolisch R, Hartmann S (2006) Experimental investigation of heuristics for resource-constrained project
scheduling: An update European. J Oper Res 174(1):23–37
Kucherenko S, Belotti P, Liberti L, Maculan N (2007) New formulations for the Kissing number problem.
Discrete Appl Math 155(14):1837–1841
Kytöjoki J, Nuortio T, Bräysy O, Gendreau M (2007) An efficient variable neighborhood search heuristic
for very large scale vehicle routing problems. Comput Oper Res 34(9):2743–2757
Lapierre SD, Ruiz AB, Soriano P (2004) Designing distribution networks: Formulations and solution heuris-
tic. Transp Sci 38(2):174–187
Lejeune MA (2006) A variable neighborhood decomposition search method for supply chain management
planning problems. Eur J Oper Res 175(2):959–976
Liang Y-C, Chen YC (2007) Redundancy allocation of series-parallel systems using a variable neighborhood
search algorithm. Reliab Eng Syst Saf 92(3):323–331
Liang Y-C, Lo M-H, Chen YC (2007) Variable neighbourhood search for redundancy allocation problems.
IMA J Manage Math 18(2):135–156
Liao CJ, Cheng CC (2007) A variable neighborhood search for minimizing single machine weighted ear-
liness and tardiness with common due date. Comput Ind Eng 52(4):404–413
123
Variable neighbourhood search: methods and applications
Liao C-J, Liao C-C (2008) An ant colony optimisation algorithm for scheduling in agile manufacturing. Int
J Prod Res 46(7):1813–1824
Liao CJ, Chao-Tang T, Luarn P (2007) A discrete version of particle swarm optimization for flowshop
scheduling problems. Comput Oper Res 34(10):3099–3111
Liberti L, Lavor C, Maculan N, Marinelli F (2008) Double variable neighbourhood search with smoothing
for the molecular distance geometry problem. J Global Optim. Available online 8 August 2007. doi:10.
1007/s10898-007-9218-1
Lin S-W, Ying K-C (2008) A hybrid approach for single-machine tardiness problems with sequence-
dependent setup times. J Oper Res Soc 59(8):1109–1119
Ling A, Xu C, Tang L (2008) A modified VNS metaheuristic for max-bisection problems. J Comput Appl
Math 220(1–2):413–421
Liu H, Abraham A (2007) An hybrid fuzzy variable neighborhood particle swarm optimization algorithm
for solving quadratic assignment problems. J Universal Comput Sci 13(9):1309–1331
Liu S-C, Chung C-H (2008) A heuristic method for the vehicle routing problem with backhauls and inventory.
J Intell Manufact (in press). Published online: 8 April 2008. doi:10.1007/s10845-008- 0101-9
Liu HB, Abraham A, Choi O, Moon SH (2006) Variable neighborhood particle swarm optimization for
multi-objective flexible job-shop scheduling problems. Lect Notes Comput Sci 4247:197–204
Liu S-X, Liu L, Zhang T (2008) Variable neighborhood search for solving vehicle routing problems with
backhauls and time windows. J Northeast Univ 29(3):316–319
Ljubic I (2007) A hybrid VNS for connected facility location. Lect Notes Comput Sci 4771:157–169
Loudni S, Boizumault P (2008) Combining VNS with constraint programming for solving anytime opti-
mization problems. Eur J Oper Res 191(3):705–735
Loudni S, Boizumault P, David P (2006) On-line resources allocation for ATM networks with rerouting.
Comput Oper Res 33(10):2891–2917
Lusa A, Potts CN (2008) A variable neighbourhood search algorithm for the constrained task allocation
problem. J Oper Res Soc 59:812–822
Melechovsky J, Prins C, Calvo R (2005) A metaheuristic to solve a location-routing problem with non-linear
costs. J Heuristics 11(5–6):375–391
Melián B (2006) Using memory to improve the VNS metaheuristic for the design of SDH/WDM networks.
Lect Notes Comput Sci 4030:82–93
Melián B, Mladenovi´c N (2007) Editorial. IMA J Manage Math 18(2):99–100
Melián-Batista B, Höller H, Voss S (2008) Designing WDM networks by a variable neighborhood search.
J Telecommun Inform Technol 4/2006:15–20
Meric L, Pesant G, Pierre S (2004) Variable neighborhood search for optical routing in networks using latin
routers. Ann Telecommun 59(3–4):261–286
Mladenovi´c N (1995) A variable neighborhood algorithm – a new metaheuristic for combinatorial opti-
mization. Abstracts of papers presented at Optimization Days, Montréal, p 112
Mladenovi´c N (2005) Formulation space search—a new approach to optimization (plenary talk). In: Vuleta
J (eds) Proceedings of XXXII SYMOPIS’05. Vrnjacka Banja, Serbia, p 3
Mladenovi´c N, Hansen P (1997) Variable neighborhood search. Comput Oper Res 24:1097–1100
Mladenovi´cN,Uroševi´c D (2003) Variable neighborhood search for the k-cardinality tree. Appl Optim
86:481–500
Mladenovi´c N, Labbé M, Hansen P (2003a) Solving the p-center problem by Tabu search and Variable
Neighborhood Search. Networks 42:48–64
Mladenovi´c N, Petrovi´cJ,Kovaˇcevi´c-Vujˇci´cV, ˇ
Cangalovi´c M (2003b) Solving spread spectrum radar
polyphase code design problem by tabu search and variable neighborhood search. Eur J Oper Res
151:389–399
Mladenovi´c N, Plastria F, Uroševi´c D (2005) Reformulation descent applied to circle packing problems.
Comput Oper Res 32:2419–2434
Mladenovi´c N, Brimberg J, Hansen P, Moreno Pérez JA (2007a) The p-median problem: a survey of
metaheuristic approaches. Eur J Oper Res 179(3):927–939
Mladenovi´c N, Plastria F, Uroševic D (2007b) Formulation space search for circle packing problems. Lect
Notes Comput Sci 4638:212–216
Mladenovi´c N, Draži ´cM,Kovaˇcevic-Vujˇci´cV, ˇ
Cangalovi´c M (2008) General variableneighborhood search
for the continuous optimization. Eur J Oper Res 191(3):753–770
Montemanni R, Smith DH (2008) Construction of Constant GC-Content DNA Codes via a Variable Neigh-
bourhood Search Algorithm. J Math Model Algorithms 7(3):311–326
123
P. Hansen et al.
Moreno-Pérez JA, Moreno-Vega JM, Rodríguez-Martín I (2003) Variable neighborhood tabu search and its
application to the median cycle problem. Eur J Oper Res 151(2):365–378
Moreno-Pérez JA, Hansen P, Mladenovi´c N (2005) Parallel variable neighborhood search. In: Alba E (ed)
Parallel metaheuristics: a new class of algorithms. Wiley, New York
Moreno-Vega JM, Melián B (2008) Introduction to the special issue on variable neighborhood search.
J Heuristics 14(5):403–404
Mori H, Tsunokawa S (2005) Variable neighborhood tabu search for capacitor placement in distribution
systems. IEEE Int Symp Circuits Syst 5:4747–4750
Naderi B, Zandieh M, Fatemi Ghomi SMT (2008) A study on integrating sequence dependent setup time
flexible flow lines and preventive maintenance scheduling. J Intell Manufact (in press). Published
online: 31 August 2008. doi:10.1007/s10845-008-0157-6
Negreiros M, Palhano A (2006) The capacitated centred clustering problem. Comput Oper Res 33(6):
1639–1663
Nuortio T, Kytöjoki J, Niska H, Bräysy O (2006) Improved route planning and scheduling of waste collec-
tion and transport. Expert Syst Appl 30(2):223–232
Ochi LS, Silva MB, Drummond L (2001) Metaheuristics based on GRASP and VNS for solving traveling
purchaser problem. MIC’2001, pp 489–494, Porto
Ognjanovi´cZ,Midi´c S, Mladenovi´c N (2005) A hybrid genetic and variable neighborhood descent for
probabilistic SAT problem. Lect Notes Comput Sci 3636:42–53
Osman IH, Ahmadi S (2007) Guided construction search metaheuristics for the capacitated p-median prob-
lem with single source constraint. J Oper Res Soc 58(1):100–114
Pacheco J, Casado S, Nuñez L (2007) Use of VNS and TS in classification: variable selection and determi-
nation of the linear discrimination function coefficients. IMA J Manage Math 18(2):191–206
Pacheco JA, Casado S, Alegre JF, Álvarez A (2008) Heuristic solutions for locating health resources. IEEE
Intell Syst 23(1):57–63
Pan Q-K, Wang W-H, Zhu J-Y (2007a) Some meta-heuristics for no-wait flow shop problem. Comput Integr
Manufact Syst, CIMS 13(5):967–970
Pan Q-K, Wang W-H, Zhu J-Y, Zhao B-H (2007b) Hybrid heuristics based on particle swarm optimization
and variable neighborhood search for job shop scheduling. Comput Integr Manufact Syst, CIMS
13(2):323–328
Papadimitriou C (1994) Computational Complexity. Addison Wesley
Paraskevopoulos DC, Repoussis PP, Tarantilis CD, Ioannou G, Prastacos GP (2008) A reactive variable
neighborhood tabu search for the heterogeneous fleet routing problem with time windows. J Heuristics
14(5):425–455
Parreño F, Alvarez-Valdes R, Oliveira JF, Tamarit JM (2008) Neighborhood structures for the container
loading problem: a VNS implementation. J Heuristics (in press). Published online: 24 May 2008.
doi:10.1007/s10732-008-9081-3
Pelta D, González JR, Moreno-Vega JM (2008) A simple and fast heuristic for protein structure comparison.
BMC Bioinformatics 9:161
Pérez MP, Rodríguez FA, Moreno-Vega JM (2007) A hybrid VNS-path relinking for the p-hub median
problem. IMA J Manage Math 18(2):157–172
Plastria F, Mladenovi´cN,Uroševi´c D (2005) Variable neighborhood formulation space search for circle
packing. 18th Mini Euro Conference VNS, Tenerife, Spain
Plastria F, De Bruyne S, Carrizosa E (2007) Alternating local search based VNS for linear classification.
Available at Optimization-online as http://www.optimization-online.org/DB_HTML/2008/02/1910.
html
Polacek M, Hartl RF, Doerner K, Reimann M (2004) A variable neighborhood search for the multi depot
vehicle routing problem with time windows. J Heuristics 10(6):613–627
Polacek M, Doerner KF, Hartl RF, Kiechle G, Reimann M (2007) Scheduling periodic customer visits for
a traveling salesperson. Eur J Oper Res 179(3):823–837
Polacek M, Doerner KF, Hartl RF, Maniezzo V (2008) A variable neighborhood search for the capacitated
arc routing problem with intermediate facilities. J Heuristics 14(5):405–423
Popper K (1959) The logic of scientific discovery. Hutchinson, London
Prandtstetter M, Raidl GR (2008) An integer linear programming approach and a hybrid variable neigh-
borhood search for the car sequencing problem. Eur J Oper Res 191(3):1004–1022
Puchinger J, Raidl G (2008) Bringing order into the neighborhoods: relaxation guided variable neighbor-
hood search. J Heuristics 14(5):405–423
123
Variable neighbourhood search: methods and applications
Puchinger J, Raidl GR, Pferschy U (2006) The core concept for the multidimensional knapsack problem.
Lect Notes Comput Sci 3906:195–208
Qian B, Wang L, Huang DX, Wang X (2006) Multi-objective flow shop scheduling using differential evo-
lution. Lect Notes Control Inform Sci 345:1125–1136
Rahimi-Vahed A, Dangchi M, Rafiei H, Salimi E (2008) A novel hybrid multi-objective shuffled frog-
leaping algorithm for a bi-criteria permutation flow shop scheduling problem. Int J Adv Manufact
Technol (in press). Published online: 7 June 2008. doi:10.1007/s00170-008-1558-6
Reeves CR (ed) (1993) Modern heuristic techniques for combinatorial problems. Blackwell, Oxford, UK
Reinelt G (1991) TSLIB—a traveling salesman library. ORSA J Comput 3:376–384
Remde S, Cowling P, Dahal K, Colledge N (2007) Exact/heuristic hybrids using rVNS and hyperheuristics
for workforce scheduling. Lect Notes Comput Sci 4446:188–197
Repoussis PP, Paraskevopoulos DC, Tarantilis CD, Ioannou G (2006) A reactive greedy randomized vari-
able neighborhood tabu search for the vehicle routing problem with time windows. Lect Notes Comput
Sci 4030:124–138
Repoussis PP, Tarantilis CD, Ioannouo G (2007) A hybrid metaheuristic for a real life vehicle routing
problem. Lect Notes Comput Sci 4310:247–254
Ribeiro CC, de Souza MC (2002) Variable neighborhood search for the degree-constrained minimum
spanning tree problem. Discrete Appl Math 118(1–2):43–54
Ribeiro CC, Vianna DS (2005) A GRASP/VND heuristic for the phylogeny problem using a new neigh-
borhood structure. Int Trans Oper Res 12(3):325–338
Ribeiro CC, Uchoa E, Werneck R (2002) A hybrid GRASP with perturbations for the Steiner problem in
graphs. INFORMS J Comput 14(3):228–246
Ribeiro CC, Martins SL, Rosseti I (2007) Metaheuristics for optimization problems in computer commu-
nications. Comput Commun 30(4):656–669
Ribeiro CC, Aloise D, Noronha TF, Rocha C, Urrutia S (2008a) A hybrid heuristic for a multi-objective
real-life car sequencing problem with painting and assembly line constraints. Eur J Oper Res 191(3):
981–992
Ribeiro CC, Aloise D, Noronha TF, Rocha C, Urrutia S (2008b) An efficient implementation of a VNS/ILS
heuristic for a real-life car sequencing problem. Eur J Oper Res 191(3):596–611
Rousseau LM, Gendreau M, Pesant G (2002) Using constraint-based operators to solve the vehicle routing
problem with time windows. J Heuristics 8(1):43–58
Santana R, Larrañaga P, Lozano JA (2008) Combining variable neighborhood search and estimation of
distribution algorithms in the protein side chain placement problem. J Heuristics 14(5):519–547
Schmid V, Doerner KF, Hartl RF, Salazar-González JJ (2008) Hybridization of very large neighborhood
search for ready-mixed concrete delivery problems Comput Oper Res (in press). Published online:
3 August 2008. doi:10.1016/j.cor.2008.07.010
Sedlar J, Vukicevic D, Aouchiche M, Hansen P (2007a) Variable neighborhood search for extremal graphs
24. Conjectures and results about the clique number Les Cahiers du GERAD G-2007-33
Sedlar J, Vukicevic D, Aouchiche M, Hansen P (2007b) Variable neighborhood search for extremal graphs
25. Products of connectivity and distance measures Les Cahiers du GERAD G-2007-47
Sevkli M, Aydin ME (2006a) A variable neighbourhood search algorithm for job shop scheduling problems.
Lect Notes Comput Sci 3906:261–271
Sevkli M, Aydin ME (2006b) Variable Neighbourhood Search for job shop scheduling problems. J Softw
1(2):34–39
Sevkli M, Aydin ME (2007) Parallel variable neighbourhood search algorithms for job shop scheduling
problems. IMA J Manage Math 18(2):117–134
Sevkli Z, Sevilgen FE (2006) Variable neighborhood search for the orienteering problem. Lect Notes Com-
put Sci 4263:134–143
Sevkli Z, Sevilgen FE (2008) A hybrid particle swarm optimization algorithm for function optimization.
Lect Notes Comput Sci 4974:585–595
Stevanovic D, Aouchiche M, Hansen P (2008) On the spectral radius of graphs with a given domination
number. Linear Algebra Appl 428(8–9):1854–1864
Subramanian A, Dos Anjos Formiga Cabral L (2008) An ILS based heuristic for the vehicle routing problem
with simultaneous pickup and delivery and time limit. Lect Notes Comput Sci 4972:135–146
Tagawa K, Ohtani T, Igaki T, Seki S, Inoue K (2007) Robust optimum design of SAW filters by the penalty
function method. Electrical Eng Jpn 158(3):45–54
123
P. Hansen et al.
Tasgetiren MF, Sevkli M, Liang Y-C, Gencyilmaz G (2004) Particle swarm optimization algorithm for
permutation flowshop sequencing problem. Lect Notes Comput Sci 3172:382–389
Tasgetiren MF, Liang Y-C, Sevkli M, Gencyilmaz G (2007) A particle swarm optimization algorithm for
makespan and total flowtime minimization in the permutation flowshop sequencing problem. Eur J
Oper Res 177(3):1930–1947
Toksari AD, Güner E (2007) Solving the unconstrained optimization problem by a variable neighborhood
search. J Math Anal Appl 328(2):1178–1187
Tseng C-T, Liao C-J, Huang K-L (2008) Minimizing total tardiness on a single machine with controllable
processing times. Comput Oper Res (in press). Published online: 27 May 2008. doi:10.1016/j.cor.
2008.05.009
Uroševi´c D, Brimberg J, Mladenovi´c N (2004) Variable neighborhood decomposition search for the edge
weighted k-cardinality tree problem. Comput Oper Res 31(8):1205–1213
Villa G, Lozano S, Racero J, Canca D (2006) A hybrid VNS/Tabu search algorithm for apportioning the
European Parliament. Lect Notes Comput Sci 3906:284–292
Vogt L, Poojari CA, Beasley JE (2007) A tabu search algorithm for the single vehicle routing allocation
problem. J Oper Res Soc 58:467–480
Wang X, Tang L (2008) A population-based variable neighborhood search for the single machine total
weighted tardiness problem. Comput Oper Res (in press). Published online: 31 July 2008. doi:10.
1016/j.cor.2008.07.009
Whitaker R (1983) A fast algorithm for the greedy interchange of large-scale clustering and median location
problems. INFOR 21:95–108
Wollenweber J (2008) A multi-stage facility location problem with staircase costs and splitting of com-
modities: model, heuristic approach and application. OR Spectrum 30(4):655–673
Xhafa F (2007) A hybrid evolutionary heuristic for job scheduling on computational grids. Stud Comput
Intell 75:269–311
Yang J, Zhang J, Aydin ME, Wu JY (2007) A novel programming model and optimisation algorithms for
WCDMA networks. IEEE Vehicular Technology Conference, pp 1182–1187
Yepes V, Medina J (2006) Economic heuristic optimization for heterogeneous fleet VRPHESTW. J Transp
Eng 132(4):303–311
Zhang C, Lin Z, Lin Z (2005) Variable neighborhood search with permutation distance for QAP. Lect Notes
Comput Sci 3684:81–88
Zhao QH, Chen S, Zang CY (2008) Model and algorithm for inventory/routing decision in a three-echelon
logistics system. Eur J Oper Res 191(3):627–635
Zobolas GI, Tarantilis CD, Ioannou G (2008) Minimizing makespan in permutation flow shop scheduling
problems using a hybrid metaheuristic algorithm. Comput Oper Res. Available online 8 February
2008. doi:10.1016/j.cor.2008.01.007
123
... The VNS algorithms are used for a wide variety of problems [3,76,77] including clustering [78] and work well for solving k-means and similar problems [50,[79][80][81][82]. ...
... This approach is the basis for VNS algorithms. The idea of alternating neighborhoods is easy to adapt to various problems [76][77][78] and highly efficient, which makes it very useful for solving NP-hard problems including clustering, location, and vehicle routing problems. In [111,112], Brimberg and Mladenovic and Miskovic et al. used the VNS for solving various facility location problems. ...
Article
Full-text available
The k-means problem is one of the most popular models in cluster analysis that minimizes the sum of the squared distances from clustered objects to the sought cluster centers (centroids). The simplicity of its algorithmic implementation encourages researchers to apply it in a variety of engineering and scientific branches. Nevertheless, the problem is proven to be NP-hard which makes exact algorithms inapplicable for large scale problems, and the simplest and most popular algorithms result in very poor values of the squared distances sum. If a problem must be solved within a limited time with the maximum accuracy, which would be difficult to improve using known methods without increasing computational costs, the variable neighborhood search (VNS) algorithms, which search in randomized neighborhoods formed by the application of greedy agglomerative procedures, are competitive. In this article, we investigate the influence of the most important parameter of such neighborhoods on the computational efficiency and propose a new VNS-based algorithm (solver), implemented on the graphics processing unit (GPU), which adjusts this parameter. Benchmarking on data sets composed of up to millions of objects demonstrates the advantage of the new algorithm in comparison with known local search algorithms, within a fixed time, allowing for online computation.
... They are successfully applied to the facility location problems (Mladenović, Brimberg, Hansen and Moreno-Pérez, 2007), vehicle routing (Erzin, Mladenovic and Plotnikov, 2017;Erzin and Plotnikov, 2015), bilevel programming (Lavlinskii, Panin and Plyasunov, 2015;Panin, Pashchenko and Plyasunov, 2014;Iellamo, Alekseeva, Chen, Coupechoux and Kochetov, 2015), etc. The convergence conditions and bounds for effectiveness of these methods are obtained in (Aarts, Korst and van Laarhoven, 1997;Brimberg, Hansen and Mladenovic, 2010;Kochetov, 2011;Bernhard and Jens, 2012). Below we propose a variant of the TS algorithm to find the best permutation for the problem (2.1)-(2.15). ...
Article
We consider a new scheduling problem originating from order picking at an automatic warehouse. We have a finite set of orders. Each order consists of a set of items. All orders should process through the picking stage, where items are extracted from pallets and packed in boxes for customers. We have some identical parallel picking machines and some parking slots for pallets. Each machine can use the pallets from all parking slots. Each pallet should be brought from the automatic warehouse to the parking slot and returned by a transport robot. The fleet of robots is limited. Our goal is to process all orders with minimal makespan. To tackle the problem, we design a mathematical model and three local search heuristics based on the order permutations. A fast decoder procedure creates an active schedule for parallel machines under the robot fleet constraint. Computational experiments for semi-synthetic test instances with up to 345 orders, 30 robots, and 16 parallel machines indicate the high efficiency of the approach.
... This work emphasises the importance of this investigation by highlighting the different definitions and algorithms to compute attraction basins, and the different contexts where attraction basins have been used. Fitness landscape analysis, problem difficulty e.g., [28,32,105] Clustering, niching associated with attraction basins e.g., [94,99,100] Exploration, exploitation, diversification, intensification e.g., [22,76,77] Problem generation [106] Problem visualisation e.g., [78,107,108] Comparison, performance, analysis of metaheuristics e.g., [31,79,109] Basins within the metaheuristic to enhance the search e.g., [96,97,110] Local Optima Networks e.g., [88,111,112] Automated Algorithm Selection [35] 4.6. RQ6: Demographic Data of SMS ...
Article
Full-text available
Context: In this study, we report on a Systematic Mapping Study (SMS) for attraction basins in the domain of metaheuristics. Objective: To identify research trends, potential issues, and proposed solutions on attraction basins in the field of metaheuristics. Research goals were inspired by the previous paper, published in 2021, where attraction basins were used to measure exploration and exploitation. Method: We conducted the SMS in the following steps: Defining research questions, conducting the search in the ISI Web of Science and Scopus databases, full-text screening, iterative forward and backward snowballing (with ongoing full-text screening), classifying, and data extraction. Results: Attraction basins within discrete domains are understood far better than those within continuous domains. Attraction basins on dynamic problems have hardly been investigated. Multi-objective problems are investigated poorly in both domains, although slightly more often within a continuous domain. There is a lack of parallel and scalable algorithms to compute attraction basins and a general framework that would unite all different definitions/implementations used for attraction basins. Conclusions: Findings regarding attraction basins in the field of metaheuristics reveal that the concept alone is poorly exploited, as well as identify open issues where researchers may improve their research.
... As we know, there is no particular theory of VNS convergence, nor is there any general assumption about the convergence of metaheuristic algorithms [52,53]. But a simple framework for global convergence of VNS based on the concept of absorption probabilities can be found in [54]. But all metaheuristics are interesting because of their numerical behavior, and after a few iterations, they get good results. ...
Article
Full-text available
In this paper, the p-hub median’s algorithm is modified to find an approximate solution of bounded continuous-time nonlinear optimal control problems (NOCP). For this purpose, after presenting the similarities between uncapacitated single allocation p-Hub median problem (USApHMP) which is a special case of the well-studied hub location problem and a discretized form of NOCP, an improvement on sequential general variable neighborhood search algorithm (SGVNS) is proposed. This algorithm that denoted as new-sequential general variable neighborhood search (N-SGVNS) is based on three local searches that use efficient neighborhood interchange. In addition, comparing the NOCP with the USApHMP has led us to introduce a suitable method to find an approximate solution for NOCP. Our results of the implementation of the N-SGVNS on the real-world data set for the USApHMP show the high accuracy of the obtained solutions. Because of the proposed algorithm is able to solve the USApHMP successfully, we hoped that this method would also be successful for NOCP. Solving of benchmark NOCP and then comparing the results of the N-SGVNS with recently developed algorithms suggest that the presented strategy may provide an outstanding framework for designing cost-effective control functions.
... To the best of our knowledge, up to now convergence results have been obtained for only a few metaheuristics [10,22,27]. In this subsection, we provide background and the convergence proof of the Scatter Search and Star Paths with Directional Rounding algorithms described in the previous subsection. ...
Article
Scatter Search is an evolutionary metaheuristic introduced by Glover (1977) as a heuristic for integer programming and was joined with a directional rounding strategy for 0–1 Mixed Integer Programming (MIP) problems based on Star Paths in Glover (1995). In this paper, we address directional rounding both independently and together with these other algorithmic components, studying its properties as a mapping from continuous to discrete (binary) space. We establish several useful properties of directional rounding and show that it provides an extension of classical rounding and complementing operators. Moreover, we observe that directional rounding of a line, as embodied in a Star Path, contains a finite number of distinct 0–1 points. This property, together with those of the solution space of 0–1 MIP, enables us to organize the search for an optimal solution of 0–1 MIP problems using Scatter Search in association with both cutting plane and extreme point solution approaches. Building on this, we provide a Convergent Scatter Search algorithm for 0–1 Mixed Integer Programs with proof of its finite convergence, along with two variants of its implementation and examples that illustrate the running of the approach.
... The VND, a kind of local search in which wider and wider neighborhoods are successively explored, is studied by Salehipour et al. [60]. Variable Neighborhood Search (VNS), which is similar to the VND but with perturbation, is studied by Hansen et al. [61], which can reduces the impact of the initial solution on the algorithm performance (Brimberg et al. [62]). Since the major neighbourhood operator is pd-pair insertion and a choosing pd-pair need be inserted a fixed position in a route at each local search move step in the OPDPSTRP, solutions are not easy to be changed and always cannot be improved by only one operator obviously. ...
Article
Full-text available
The One-to-one Pickup and Delivery Problem with Shortest-path Transport along Real-life Paths (OPDPSTRP) is presented in this paper. It is a variation of the One-to-one Pickup and Delivery Problem (OPDP), which is common in daily life, such as the Passenger Train Operation Plans (PTOP) and partial Taxi-sharing Problem. Unlike the classical OPDP, in the OPDPSTRP, (1) each demand must be transported along the shortest path according to passengers/shippers requirements, and (2) each vehicle should travel along a real-life path. First, six route structure rules are proposed for the OPDPSTRP, and a kind of Mixed-Integer Programming (MIP) models is formulated for it. Second, A Variable Neighborhood Descent (VND), a Variable Neighborhood Research (VNS), a Multi-Start VND (MS_VND) and a Multi-Start VNS (MS_VNS) with five neighborhood operators has been developed to solve the problem. Finally, The Gurobi solver, the VND, the VNS, the MS_VND and the MS_VNS have been compared with each other by 84 random instances partitioned in small size connected graphs, medium size connected graphs and large size connected graphs. From the test results we found that solutions generated by these approaches are often comparable with those found by the Gurobi solver, and the solutions found by these approaches are better than the solutions found by the Gurobi solver when solving instances with larger numbers of demands. In almost all instances, the MS_VND significantly outperforms the VND and the VNS in terms of solution quality, and outperforms the MS_VNS both in terms of solution quality and CPU time. In the instances with large numbers of demands, the MS_VND is still able to generate good feasible solutions in a reasonable CPU time, which is of vital practical significance for real-life instances.
Article
Joint optimization of maintenance operations and spare parts inventory optimization is promising for ensuring the reliable and efficient operation of industrial systems. Extensive studies have been conducted on joint optimization emphasizing various aspects. However, those studies still suffer two limitations. 1) The considered system structures are restricted to particular cases, and thus are unable to fully address the joint optimization needs of actual industrial systems possessing various structures, and 2) imperfect maintenance, as has been commonly adopted in industries, is not addressed in existing works, which compromises the economic efficiency of the joint policy. Targeted at these limitations, this paper investigates the joint optimization for multi-unit systems with a generalized structure, i.e., the systems consist of multiple identical units, and each unit possesses a complex subsystem structure. First, a total cost rate model is formulated, in which maintenance actions include both perfect replacement and imperfect maintenance, and the spare parts inventory policy consists of an (s, S) policy and the option to place emergency orders. Based on the formulated model, a simulation optimization method is proposed. The simulation module evaluates the total cost rate iteratively, and the optimization module utilizes a variable neighborhood search-based algorithm to obtain a high-quality joint policy with tractable computation times. Two numerical examples are provided for demonstration, and sensitivity analyses are conducted to study the effects of parameters.
Article
In distributed passive radar, optimization of the receiver placement attracts much attention recently to improve the performance. Whereas most research optimizes receiver placement for best coverage or localization performance, the effect of one performance optimization on the other is ignored. In this article, the theoretical analysis on the conflict between the coverage and localization performance optimization is presented. Then, a joint coverage and localization-based receiver placement optimization is formulated, in which the detection probability and the localization accuracy are chosen as the corresponding metrics. To solve this optimization problem, a multiobjective neighborhood search algorithm with multineighborhood structure is proposed, by which a set of Pareto solutions corresponding to the optimal receiver placements is obtained. Compared with the traditional neighborhood search algorithms, the proposed algorithm is able to provide better receiver placements approaching the global Pareto optimum, which is validated by the simulations.
Chapter
The basic aim of continuous location problems is to generate facility sites in a given continuous space, usually the Euclidean plane, in order to optimize some performance measure relative to a set of given points (customers). From a mathematical perspective, we may attribute the start of continuous location theory to Fermat who suggested the problem of locating a point in the plane that minimizes the sum of distances to three given points. The idea was generalized in an applied sense by Weber (1909) a few centuries later by extending the problem to any number “n” of given (or fixed) points representing markets and associating weights (or demands) to these points. The objective function, a weighted sum of distances from the facility to the given markets, now measured the cost of delivering goods to the markets as a function of the facility location. This function is known to be convex for any distance norm and hence amenable to solution by local descent methods. One such method developed for Euclidean distance, the well-known single-point iterative scheme by Weiszfeld (1936), has received much attention in the literature, including for example, seminal papers by Kuhn (1973) and Katz (1974), which studied the global and local convergence properties of this method. For further reading on the rich history of the continuous single-facility minisum (or 1-median) location problem, see Wesolowsky (1993) and Drezner et al. (2002).
Article
Full-text available
Generalized hill climbing algorithms provide a well-defined framework to model how local search algorithms address intractable discrete optimization problems. Monte Carlo search, simulated annealing, threshold accepting, and tabu search, among others, can all be formulated as particular generalized hill climbing algorithms. Moreover, generalized hill climbing algorithms provide a structure for classifying and studying a large body of stochastic and deterministic local search algorithms. In particular, the generalized hill climbing algorithm framework can be used to develop a general Markov chain model for the application of local search algorithms to intractable discrete optimization problems. Moreover, the generalized hill climbing algorithm framework has been used to evaluate the finite-time performance of local search algorithms. This analysis is of particular interest to practitioners for whom traditional convergence results are often of limited interest and value. This paper presents a survey of recent results on how the generalized hill climbing algorithm framework has been used to model and gain insight into the performance of local search algorithms. Many of these results provide tools for comparing and evaluating different types of local search algorithms using common performance measures.
Article
Based on the background of goods distribution in e-business environment, a model for solving the problems VRPBTW, i.e., the vehicle routing problems with backhauls and time windows, is developed, and it is analyzed to improve the VNS (variable neighborhood search) algorithm so as to solve the problems. Applying the modified sequential cheapest insertion heuristic proposed originally by Braysy to generating an initial solution for improvement, the algorithm introduces four different local search operators in accordance to VNS mechanism. The results of computational tests including 15 examples were compared with that by conventional VNS and showed that the modified VNS algorithm is effective for solving the problems and greatly outperforms the conventional one.
Article
Discrete Particle Swarm Optimization (DPSO), Discrete Differential Evolutions (DDE), Variable Neighborhood Search (VNS) and Threshold Accepting (TA) were proposed for the no-wait flow shop problem with makespan criterion. Both DPSO and DDE adopted the natural encoding scheme based on job permutation and employed newly designed methods to produce new individual. To improve solution quality, 12 hybrid algorithms based on serial structure, embedded structure and collaborative structure were studied. Simulation results based on the well known benchmark suites in the literature showed that hybrid heuristics had better optimization performance.
Article
This paper proposes an approach based on Variable Neighbourhood Search (VNS) to solve the Routing and Wavelength Assignment (RWA) problem in optical networks including latin routers. It can be summed up as establishing routing (finding intermediate routers on optical paths between each origin/destination pair) and wavelength assignment of these optical paths in such networks. The problem will be tackled according to two scenarii: to optimize the number of established connections (scenario 1) or to answer as well as possible an accurate traffic array (scenario 2). In traditional optical networks (without latin routers), one often separates routing and wavelength assignment because of the general problem complexity (each of the two sub-problems is NP-hard). However, latin routers introduce constraints connecting routing and assignment, this requires a simultaneous treatment of the two problems. A local search heuristic, VNSFOR, based on the definition of different neighbourhoods (with simple and double moves) is proposed in this paper to provide us with solutions close to the optimum. Experimental results show how VNSFOR leads to better solutions, according to both scenarii, in comparison with the reference algorithm LONCA.
Article
A discrete Particle Swarm Optimization (PSO) algorithm was presented for Job Shop scheduling problem. In the algorithm, a sequence-based code and update strategy for new positions were applied so as to make PSO more suitable for scheduling problems. Aiming at the shortcoming of premature and poor resulted from pure PSO, based on the complementary strengths of PSO and Variable Neighborhood Search (VNS) algorithm, four hybrid procedures were put forward. They were first PSO then VNS (PV) algorithm, Enhanced PSO (EPSO) algorithm, PSO and VNS in Turn (PVT) algorithm, and PSO and VNS Cooperative algorithm (PVC). Numerical simulation demonstrated that within the framework of the newly designed hybrid algorithm, the NP-hard classic Job shop scheduling problem could be solved efficiently.
Article
Proposed just a few years ago, Variable Neighborhood Search (VNS) is a new metaheuristic for combinatorial and global optimization, based upon systematic change of neighborhood within a possibly randomized local search. Its development has been rapid. After reviewing the basic scheme of VNS, several extensions aimed at solving lange problem instances are surveyed. Issues in devising a VNS heuristic are discussed. Finally, recent applications are briefly summarized, with special attention given to VNS-based computer-aided discovery of conjectures in graph theory.
Article
We consider the minimum weighted k-cardinality tree problem, i.e. the problem of finding in a given undirected weighted graph G a subtree with k-edges, having a minimum weight. Applications of this problem arise in oil-field leasing and facility layout. This problem differs from the classical Steiner problem in that we have no required nodes, and can be formulated as an integer programming problem. It is, however, notoriously difficult to solve for large scale problems, even when modern methods based on polyhedral combinatorics and branch and cut ideas are being used. We present a tabu search heuristic approach to the solution of the minimum weighted k-cardinality tree problem. Our heuristic search method uses a neighborhood defined by edge swapping, and we develop a candidate list strategy combining greedy and diversifying aspects to overcome the prohibitively large neighbourhood size. We also report on the effect of using more than one tabu list as well as on basic tabu search diversification and intensification schemes.
Article
Using the AutoGraphiX 2 system (AGX2), we study relations between graph invariants of the form lb n ≤R⊕i≤ub n where R denotes the Randić index of a graph G=(V,E), i another invariant among matching number μ and the index (or the maximum eigenvalue) λ 1 , ⊕ denotes one of the four operations +,-,×,/, while lb n and ub n lower and upper bounding functions of the order n of the graph considered which are tigt for all n (except possibly very small values due to border effects). Conjectures are obtained in 14 out of 16 cases, 6 of which are proved automatically, 7 are proved by hand and one remains open.
Article
Consider a set L of potential locations for p facilities and a set U of locations of given users. The p-median problem is to locate simultaneously the p facilities at locations of L in order to minimize the total transportation cost for satisfying the demand of the users, each supplied from its closest facility. This model is a basic one in location theory and can also be interpreted in terms of cluster analysis where locations of users are then replaced by points in a given space. We propose several new Variable Neighborhood Search heuristics for the p-median problem and compare them with Greedy plus Interchange, and two Tabu Search heuristics.