
Move Neighborhood Structure (MNS): this structure
is defined as the set of solutions obtained from the
current solution by selecting a pair of re-
quests , where , and re-
assigning them to a different pair of used frequen-
cies
while satisfying all the hard constraints.
Hence, this neighborhood investigates all the possi-
ble moves for all pairs of requests and used frequen-
cies (the maximum possible number of such moves
is and ensures that the number of used fre-
quenciesdoes not increase. This structure is sim-
ple and most commonly used for TS algorithms in
the literature e.g. [6, 7, 8].
Swap Neighborhood Structure (SNS): this structure
is defined as the set of solutions obtained from the
current solution by swapping the frequencies of a
pair of requests, where .
SNS proves to be quick as it contains a small number
of neighbors (the maximum possible size is).
Nevertheless, it can improve the solution quality.
Diversification Neighborhood Structure (DNS): this
structure, unlike the previous structures, is intended
to diversify the search and to moves to a different
part of the solution space. It consists of the set of so-
lutions obtained from the current solution by replac-
ing a pair of used (old) frequencies with a pair of un-
used (new) frequencies. Given a pair of old frequen-
cies, another pair of frequencies is accepted if it can
be assigned to all pairs of requests which were as-
signed to the old pair without breaking any hard con-
stants, although violation may incur. After pairs of
old and new frequencies are selected, then all pairs of
requests that are assigned to the pair of old frequen-
cies will be re-assigned to the pair of new frequen-
cies. However, any re-assignment that causes the
number of used frequencies to drop below the lower
bound for some domains (see Section 3) is not con-
sidered. This is in fact unlikely as the pair of new
frequencies have to be valid for all pairs of requests
assigned to the pair of old frequencies. However, as
some frequencies occur in more than one domain, the
lower bounds on other domains may be breached.
6.2 The Initial Solution Phase
A greedy heuristic algorithm is used to generate an
initial solution as follows: a pair of requests which has
the smallest number of feasible pairs of frequencies is
selected. Then, among those pairs of frequencies, the
one which is feasible for most pairs of requests is as-
signed to the selected pair of requests. In case there are
no feasible pairs of frequencies, then a pair of frequen-
cies is randomly selected. If the initial solution is infea-
sible, then a descent method with MNS (described in
Section 6.1) is used to reduce the number of violations.
6.3 The Creating Violations Phase
This phase aims to reduce the number of used frequen-
cies in a feasible solution by removing a pair of fre-
quencies based on the bidirectional constraints. The
removed pair must satisfy the following conditions:
firstly, neither of the frequencies should be required to
satisfy any pre-assignment constraints. Secondly, the
lower bound on the number of frequencies that are re-
quired from each domain based on the underlying graph
coloring model must be satisfied after deleting these
frequencies. If there is more than one candidate pairs of
frequencies, then the one which is assigned to the least
number of pairs is selected. If there is still more than
one such pair, then one of them is selected randomly.
After that, the pairs of requests which are assigned to
the candidate pair of frequencies will be re-allocated to
a feasible pair of used frequencies. If there is no feasible
pair of used frequencies, then these requests will be re-
allocated to an infeasible pair of used frequencies at
random. If this process leads to a feasible solution, then
a further pair is removed. Otherwise, the improvement
phase is executed to attempt to find a feasible solution,
which is described in Section 5.6. The concept of the
creating violations phase was used previously in the
literature e.g. [8].
6.4 The Improvement Phase
Ordering of Neighborhood Structures. The iterative
procedure of the DMNS algorithm starts in the im-
provement phase. The objective of this phase is to find a
feasible solution, i.e. a solution with zero violations.
The improvement phase consists of three neighborhood
structures (MNS, SNS and DNS). In MNS and SNS,
only used frequencies are considered, while DNS con-
siders only unused frequencies. MNS is explored first
because it contains a large number of neighbors. The
SNS structure, which covers a limited number of neigh-
bors, is then considered. Therefore, this structure is
intended to support the MNS. DNS aims to jump from
the current position in the solution space to a new posi-
tion by removing a pair of used frequencies and adding
a new one from the set of pair of unused frequencies to
the current solution. Therefore, DNS is intended to
diversify the search rather than reduce the number of
violations, which reflects the reason for leaving it as the
last structure.
Implementation of the Improvement Phase. Each
iteration involves one of the three neighborhood struc-
tures by attempting them consecutively until some crite-
ria are satisfied. The search begins with MNS. If this
structure results in a better solution, then it is executed.
Otherwise, it is repeated until the structure is executed
for given number of times consecutively without im-
provement. Following this, the search enters SNS. If
this structure leads to a better or equally good solution,
INTERNATIONAL JOURNAL OF APPLIED MATHEMATICS,
COMPUTATIONAL SCIENCE AND SYSTEMS ENGINEERING
DOI: 10.37394/232026.2023.5.17