Next Article in Journal
A Regularization Method to Solve a Cauchy Problem for the Two-Dimensional Modified Helmholtz Equation
Previous Article in Journal
A Fast and Robust Spectrogram Reassignment Method
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Hybrid Framework Combining Genetic Algorithm with Iterated Local Search for the Dominating Tree Problem

1
School of Computer Science and Information Technology, Northeast Normal University, Changchun 130117, China
2
School of Management Science and Information Engineering, Jilin University of Finance and Economics, Changchun 130117, China
*
Authors to whom correspondence should be addressed.
Mathematics 2019, 7(4), 359; https://doi.org/10.3390/math7040359
Submission received: 29 March 2019 / Revised: 11 April 2019 / Accepted: 11 April 2019 / Published: 19 April 2019

Abstract

:
Given an undirected, connected and edge-weighted graph, the dominating tree problem consists of finding a tree with minimum total edge weight such that for each vertex is either in the tree or adjacent to a vertex in the tree. In this paper, we propose a hybrid framework combining genetic algorithm with iterated local search (GAITLS) for solving the dominating tree problem. The main components of our framework are as follows: (1) the score functions D s c o r e and W s c o r e applied in the initialization and local search phase; (2) the initialization procedure with restricted candidate list (RCL) by controlling the parameter to balance the greediness and randomness; (3) the iterated local search with three phases, which is used to intensify the individuals; (4) the mutation with high diversity proposed to perturb the population. The experimental results on the classical instances show that our method performs much better than the-state-of-art algorithms.

1. Introduction

Let G = ( V , E , W ) be an undirected, connected and edge-weighted graph, where V is the set of vertexes, E is the set of edges, and W is a non-negative weight function E R + associated with edges. We shall use w u v to represent a non-negative weight of each edge ( u , v ) E . A tree of graph G is called dominating tree ( D T ) if each vertex in V \ D T is adjacent to at least one vertex in D T . The dominating tree problem (DTP) aims to find a dominating tree D T of G with the minimum total edge weight.
The DTP has many applications in real-word domains [1,2,3,4,5], such as network design and network routing in the area of wireless sensor networks (WSNs). For example, the goal of multicasting is to simultaneously transmit same message to a group of target computers [1,5]. If the edge weight represents the energy to transfer message from one server to another, the total edge weight in D T equals the total cost of transferring message for multicasting. Another example is that DTP can be modelled using for routing the virtual backbone [4]. In fact, the energy cost of each edge directly affects the energy cost of the routing. Therefore, minimizing the energy cost of the routing must be considered.
The DTP has been proved to be non-deterministic polynomia-hard (NP-hard) in general [1]. At present, many different algorithms have been proposed accordingly for DTP. These algorithms can be divided into two categories (i.e., exact algorithms and heuristic algorithms) in terms of the solution method. To the best of our knowledge, there are two exact algorithms proposed in the literature for solving the DTP. In [6], Eduardo et al. proposed a solution framework combining a primal-dual heuristic with an exact branch-and-cut approach to solve DTP. The highlight of it is to transform the DTP into a Steiner tree problem for further solution. Meanwhile, Adasme et al. [7] proposed an extended version of a primal-dual model to solve DTP. In addition, they designed the effective inequalities to improve linear relaxation of the primal-dual model. In recent years, many heuristic algorithms have been proposed to solve DTP. Shin et al. [1] proposed an approximation framework with polynomial time complexity ( | v | O ( l g | v | ) ) and a heuristic algorithm with low time complexity for DTP. Sundar and Singh [2] proposed two heuristic algorithms to solve DTP, viz. artificial bee colony(ABC) algorithm and an ant colony optimization (ACO) algorithm. Their algorithms are the first metaheuristic algorithms to solve DTP. Sundar [3] proposed a steady-state genetic algorithm (SSGA) to solve DTP. He designed the effective crossover and mutation operator to improve the performance of SSGA. Dražić et al. [5] proposed a variable neighborhood search (VNS) approach to solve DTP. They properly used the arrangement of vertex sets in the neighborhood structure and the local search phase. At the same time, Chaurasia and Singh [4] proposed an evolutionary algorithm which employs a guided mutation (EA/G) operator to solve DTP. It tried to overcome the shortcomings of genetic algorithms. Sundar and Singh [8] proposed a novel artificial bee colony algorithm (ABC_DT) to solve DTP. ABC_DT is different from existing ABC on two main points, viz. initial phase and the acquisition of the neighborhood solution. Although many heuristic algorithms have been proposed to solve DTP, there is still room for improvement based on these existing results.
Tremendous work on the memetic search has been done by more and more researchers due to its effectiveness and adaptiveness [9,10,11,12,13,14]. It is essentially a combination of a global search based on population and a local search based on individuals. In this framework, different memetic search can be constructed using different search strategies. For example, global search strategies can use genetic algorithms, evolution strategies, etc. Local search strategies can use simulated annealing, greedy algorithm, tabu search, etc. Tang et al. [9] proposed a memetic algorithm with extended neighborhood search for the capacitated arc routing problem (CARP). They mainly designed an effective local search approach to increase search space and diversity. Kannan et al. [10] proposed a novel memetic framework combining a genetic algorithm with local search-based filter ranking. Wang et al. [11] proposed a novel memetic algorithm based on tabu search for the maximum diversity problem (MDT). Tabu search phase effectively used continuous filtering candidate list strategy. In this paper, our proposed algorithm shall make full use of the advantages of the local search framework and genetic algorithm.
In this paper, we propose an effective hybrid framework combining genetic algorithm with iterated local search for DTP. Firstly, we design two functions D s c o r e and W s c o r e which are used to help make the decisions on which vertex should be added to or removed from the solution. Secondly, the initialization procedure with RCL ( I n i t _ R C L ) is proposed to initialize the population. By controlling the parameter α , I n i t _ R C L can balance the greediness and randomness to some extent. Third, the iterated local search ( I T L S ) including three phases is applied to intensify the individuals in the population. In the removing phase, some vertexes with higher D s c o r e are removed, and the dominating phase and connecting phase are applied to repair the solution greedily considering the D s c o r e and W s c o r e . Due to the high greediness in the I T L S , a mutation with high diversity is performed to perturb the population. Some vertexes are randomly removed, then we also use the same procedure in I T L S to repair the solution. Finally, the framework is outlined. We shall compare our proposed algorithm with the state-of-the-art heuristic algorithms, viz. VNS and ABC_DT. The experimental results show that our algorithm performs much better than VNS and ABC_DT on the classical benchmark instances.
The structure of our paper is as follows. Some basic concepts are provided in Section 2. In Section 3, we introduce our framework and its components including the score function, the initialization procedure, the iterated local search and the mutation with high diversity. The experimental results are shown in Section 4. Finally, we summarize our work and put forward some new ideas for the future work in Section 5.

2. Preliminaries

Let G = ( V , E , W ) be an undirected, connected and edge-weighted graph, where V is the set of vertexes, E is the set of edges, and W is a non-negative weight function E R + associated with edges. We shall use w u v to represent a non-negative weight of each edge ( u , v ) E . We shall use h o p ( u , v ) to denote the number of edges in a shortest hop path (not considering the edge weight) from u to v. Then, N i ( v ) = { u | h o p ( u , v ) = i } is used to present the ith level neighbors of the vertex v. In addition, we denote N i [ v ] = N i ( v ) { v } . Particularly, N ( v ) is the neighbor set of v and N [ v ] also includes the v itself except N ( v ) . Some definitions are described as follows.
Definition 1.
(Induced Subgraph, IS) Given an undirected graph G ( V , E ) , G = ( V , E ) , V V , E = { ( u , v ) | ( u , v ) E , u , v V } , subgraph G is called the induced subgraph of graph G.
Definition 2.
(dominating set, DS) Given an undirected graph G ( V , E ) , the dominating set of G is a vertex subset D V such that every vertex in V\D has at least one neighbor in D. (An example is shown in Figure 1).
Definition 3.
(minimum dominating set, MDS) Given an undirected graph G ( V , E ) , the minimum dominating set problem calls for finding a dominating set D with minimum cardinality.
Definition 4.
(Dominating tree problem, DTP) Given an undirected and edge-weighted graph G = ( V , E , W ) , the D T P calls for finding a tree with minimum total edge weight such that every vertex in V\DT has at least one neighbor in D T . (An example is shown in Figure 2).
Figure 1 and Figure 2 show an undirected graph G with 11 vertexes and 16 edges. The black vertexes are in the dominating set, hence in Figure 1 {0, 1, 7, 9} is a dominating set of G. In Figure 2, the black vertexes (viz. 0, 2, 7, 9) are in D T and the edges of the minimum spanning tree are the bold. The total edge weight of the dominating tree is 5.89. We can observe that {0, 2, 7, 9} is also a dominating set of G. It embodies that the dominating tree satisfies the characteristic of the dominating set.

3. The Hybrid Framework Combining Genetic Algorithm with Iterated Local Search for DTP

In this section, we focus on the framework proposed for solving the DTP, which is a hybrid framework by combining the genetic algorithm with iterated local search. Before providing the framework, the score functions will be introduced firstly, which will be applied in the initialization procedure and the iterated local search phase. Then, we present the initialization procedure which can balance the greediness and the randomness to some extent. Subsequently, the iterated local search is described in details, which is used to intensify the individuals in the population. In order to maintain the diversity of the individuals, we utilize the mutation to perturb the population. Finally, the hybrid framework combining the genetic algorithm with iterated local search (GAITLS) is presented.

3.1. The Score Functions

To guide the search toward the direction with more possible best solutions, the score function is designed to help the search make the decision on selecting the vertex to add to or remove from the solution. Lots of score functions have been proposed in [15,16,17,18] for the different problems. Considering the features of DTP, we design the D s c o r e and W s c o r e function which will be applied in two phases including the iterated local search and the initialization. How to apply the D s c o r e and W s c o r e is introduced in the following subsections. Now we give the information about D s c o r e and W s c o r e .
  • D s c o r e : For a vertex v in the solution, D s c o r e indicates how many vertexes will become non-dominated from dominated once v is removed from the solution. That is to say, D s c o r e is equal to the number of neighbors of v which are only dominated by v. If the vertex v is not in the solution, D s c o r e represents how many vertexes will become dominated from non-dominated once v is added to the solution. In this case, D s c o r e is equal to the number of neighbors of v which are non-dominated. The definition of D s c o r e is listed as follows.
    D s c o r e [ v ] = 1 × | { u | u N [ v ] a n d u i s o n l y d o m i n a t e d b y v } | , v D T | { u | u N [ v ] a n d u i s n o n d o m i n a t e d } | , v D T
    In order to distinguish between the vertexes v D T and v D T , the D s c o r e value of v D T is non-positive by times −1. Once one vertex is added to or removed from the D T , we do not need re-compute the D s c o r e for each vertex and we just need update the D s c o r e of N [ v ] and N 2 [ v ] .
  • W s c o r e : For each vertex not in the solution D T , we design the W s c o r e function to evaluate the effect on the final sum weight of edges in the minimum spanning tree if one vertex is added to D T . The definition of W s c o r e is listed in Equation (2). The S P ( v , v ) means the shortest path between v D T and v D T . W s c o r e [ v ] is equal to the minimum over all such shortest paths S P ( v , v ) . The shortest path for each vertex pair has been computed in the preprocessing phase, so it is easy to update the W s c o r e [ v ] for each vertex not in D T .
    W s c o r e [ v ] = min v D T S P ( v , v ) , v D T

3.2. The Initialization Procedure

For the evolutionary algorithm, the important component is the population. The quality of the population has an important impact on the final results. Generally, the population should be balanced considering the greediness and randomness. Greediness is used to guarantee the individuals with better objective while the randomness is used to guarantee the diversity of population on the whole. Hence, we adopt the restricted candidate list (RCL) to initialize the population. RCL can control the greediness strength by the parameter and has been widely applied to solve the combinational optimization problem [18,19,20].
The initialization procedure ( I n i t _ R C L ) is outlined in Algorithm 1. The inputs are the graph G ( V , E , W ) , the size of population I n d i N u m , and the parameter α which is used to control the greediness strength. The bigger the α , the stronger the greediness. In order to save time, we compute the shortest path for each vertex pair in the preprocessing phase. Then, the procedure generates I n d i N u m individuals to construct the population by executing a series of iterations. At each iteration, one individual is produced. To start with, the solution D T is initialized to the empty set. In order to guarantee the solution is connected, we maintain a candidate list (CL) which is used to store the neighbors (not in D T ) of the vertexes in D T . C L is initialized to empty set due to no vertex in the D T . Then, the D s c o r e [ v ] is initialized to | N [ v ] | . One vertex will be randomly selected from RCL to add to the D T at each inner iteration. Therefore, firstly we need to construct the R C L . For the first vertex, we just consider the D s c o r e . The m a x s c o r e and m i n s c o r e represent the maximum and minimum value of D s c o r e over the vertexes in V. The vertexes with D s c o r e greater than or equal to m i n s c o r e + α × ( m a x s c o r e m i n s c o r e ) will be added to the RCL. For the remaining vertexes, we will consider the weight of edges connecting to the vertexes in D T . The m a x s c o r e and m i n s c o r e represent the maximum and minimum value of D s c o r e [ v ] / m i n ( w u v ) over vertexes in C L , where m i n ( w u v ) is the minimum weight of edges connecting v to the vertex u in D T . After randomly selecting a vertex A d d V e r t e x from R C L , some information should be updated, such as the C L , D T and D s c o r e of N [ A d d V e r t e x ] and N 2 [ A d d V e r t e x ] . The inner loop will stop until the there is no non-dominated vertex indicating the individual is a feasible solution.
Once an individual is constructed, we will execute the pruning procedure to remove the redundant vertexes [2]. Subsequently, we connect the vertexes in D T by constructing the minimum spanning tree with the help of Prim’s algorithm [21]. In addition, the fitness of the individual is equal to the sum weight of edges in the spanning tree. Finally, the new individual will be inserted into the population P O P i n i t . The outer loop will stop until the population is full.

3.3. The Iterated Local Search Based on the Dynamic Score Functions

In each generation, we apply the iterated local search (ITLS) to intensify the individuals. During the ITLS, we use the score functions introduced above to lead the direction toward the solutions with more possible best solutions. The framework of ITLS is described in Algorithm 2.
The graph G ( V , E , W ) and the current solution D T are as the inputs for the ITLS. In addition, ITLS will return the local best solution D T which is initialized to D T . Before performing the iteration, we need compute the D s c o r e [ v ] for each vertex according to Equation (1). Subsequently, a series of iterations are executed to improve the current solution D T . Here, we use the max iterations as the stop criterion. At each iteration, we firstly judge whether the current solution is feasible. If that, we will perform the pruning phase by removing the redundant vertexes and connect the vertexes in D T by constructing the minimum spanning tree. If the D T is better than D T , D T will be updated.
Then, three phases are followed. (1) In the removing vertexes phase, we always remove the vertex with the highest D s c o r e [ v ] value from D T until there exists non-dominated vertex. Meanwhile, the removed vertex should be not in tabul_list to avoid the search to meet the same situation quickly. Here, we use the simple tabu_list and the vertex added at the last iteration is not allowed to be removed at the current iteration. To guarantee the solution feasible, we do not use the tabu list when adding the vertex to the solution. If there are more than one vertex with the highest value D s c o r e , we prefer to the vertex in D T longer time evaluated by how many iterations the vertex has not changed the state (in or not in DT). Once a vertex is removed, the D s c o r e of N [ v ] and N 2 ( v ) should be updated. The following two phases are applied to repair the infeasible solution. (2) In the dominating phase, we add some vertexes to D T until D T is a dominating set. When selecting the vertex, we consider the D s c o r e meaning how many vertexes will become dominated after adding the vertex. We also consider the effect W s c o r e [ v ] on the weight of edges connecting v with the vertexes in D T . W s c o r e [ v ] is equal to the minimum over the shortest paths from v to the vertexes in D T . Therefore, the vertex with lowest W s c o r e [ v ] / D s c o r e [ v ] is selected to add to D T . (3) In the connecting phase, we compute all the shortest paths between the vertexes in different components. The shortest path is chosen and the vertexes along the path are added to the solution. The procedure will continue until there is only one component. Finally, the tabu list and the D s c o r e are updated.
Algorithm 1: The initialization procedure ( I n i t _ R C L ).
Mathematics 07 00359 i001
Algorithm 2: The iterated local search based on the score functions (ITLS).
Mathematics 07 00359 i002

3.4. The Mutation with High Diversity

Generally, the genetic algorithm uses the crossover to combine the genetic information of two parents and pass down the excellent genes to the offspring. However, for the DTP problem the crossover usually leads to the same offspring. Therefore, we adopt the mutation with high diversity to improve the situation. The ITLS focuses on one solution and greedily to explore the solution space. In order to explore bigger space, we use the mutation to perturb the parent solution and generate the offspring.
During the ITLS, we always remove the vertexes with the highest D s c o r e , which may lead the search to trap in the local optima. Hence, some vertexes are randomly selected to remove from the solution in the mutation phase until the solution is not a dominating set. After removing the vertex, the solution is infeasible and we conduct two phases including dominating and connecting phase like in ITLS to repair it. The difference is that we do not apply the tabu list in the mutation phase. Furthermore, the new solution generated by the mutation will replace the parent solution no mater whether it is better than parent or not. The reason is that after ITLS the individual is replaced by the local optima. The best solution D T * will be updated if the offspring is better than D T * .

3.5. The Hybrid Framework Combining Genetic Algorithm with Iterated Local Search (GAITlS)

After introducing the components respectively, we provide the framework in this section, which is shown in Algorithm 3.
The inputs of GAITLS include the graph G ( V , E , W ) , the size of population I n d i N u m , the cut-off time and the greediness strength α for the initialization procedure. To start with, the population P O P is initialized by calling the procedure I n i t R C L ( G , I n d i N u m , α ) . Then, D T * is initialized to the individual with the best objective in P O P . The outer loop (line 3–15) will continue until the the elapsed time is greater the cut-off time. At each generation, the iterated local search is performed for each individual in the population (line 6–10). The individual is replaced by the solution returned by ITLS. Once the better solution is found during the ITLS, the best solution D T * will be updated. After the ITLS, for each individual we perform the mutation to increase the diversity. The best solution D T * also will be updated during the mutation phase.
Algorithm 3: The hybrid framework combining genetic algorithm with iterated local search (GAITLS).
Mathematics 07 00359 i003

4. Experiments

In this section, we carry out plentiful experiments to evaluate the efficiency of our algorithm on standard benchmarks. We have compared our proposed algorithm with the state-of-the-art heuristic algorithms, viz. VNS and ABC_DT. In our experiments, there are two classic benchmark instances, dtp and range, which can be downloaded from the webpage [22]. For each instance of dtp, | V | { 10 , 15 , 20 , 100 , 200 , 300 } and | E | { 15 , 20 , 30 , 50 , 150 , 200 , 400 , 600 , 1000 } . For each instance of range, | V | { 50 , 100 } and three values of transmission range, viz. 100, 125 and 150. It should be noted that, VNS is the best heuristic algorithm on dtp benchmark, and ABC_DT is the best heuristic algorithm on range benchmark. Our algorithm will compare with VNS and ABC respectively.
Our proposed algorithm is implemented in C++ and compiled by g++ with the -O2 option. All computational experiments were performed on the Linux Ubuntu with Intel(R) Xeon(R) CPU E7-4830 @2.13Ghz and 8GB memory. It should be noted here that ABC_DT and VNS are implemented in C [5,8]. Our proposed algorithm run 20 times independently for each instance with different random seeds, until the time limit (600 s) is satisfied. In our algorithm, it is important to make appropriate adjustments to the parameters. There are mainly three parameters values(viz. I n d i N u m = 50, α = 0.85, s t e p = 1,000,000) where are determined by performing a preliminary experiment. I n d i N u m presents the size of the population, and α presents the greediness strength when constructing the RCL. s t e p is used to control the number of iterations in the local search phase.

4.1. Computational Results

In the results of our experiment, B e s t presents the best solution values, A v g presents the average solution values, and A v g T i m e presents the average run time to reach the best solution. Note that the bold value presents the best solution value among the different algorithms compared (in terms of B e s t and A v g ). O p t presents the optimal solution which is acquired by two exact algorithms [6,7]. I n i t represents the initial solution obtained by GAITLS. For some instances, exact algorithm failed to find a optimal solution, then it is marked as “ n a ” for these cases.
The experimental results of algorithms are shown in Table 1, Table 2 and Table 3. Table 1 shows the results of VNS and our algorithm on small size instances of dtp. Compared with VNS, GAITLS can obtain the optimal solution on all instances. In addition, both the algorithms have the same average solution on all instances. Our algorithm is faster than VNS in terms of the average time of solution. Table 2 shows the results of VNS and our algorithm on large size instances of dtp. Form Table 2, our algorithm can obtain the same best values with VNS on 6 instances. In the remaining 12 instances, our algorithm can obtain better best values with VNS. In terms of A v g and A v g T i m e , our algorithm is better than VNS on all instances. This shows that our algorithm has been considerably improved compared to VNS. Table 3 shows the results of ABC_DT and our algorithm on range benchmark. From Table 3, all of them can be solved to optimality. We can observe that the quality of Avg obtained by our algorithm is much better than ABC_DT with one exception, viz. R150_100_2. The computational results in Table 1, Table 2 and Table 3 show that our algorithm can be resoundingly applied to spares instances. It distinctly indicates that the combination of genetic algorithm and iterated local search in our algorithm can effectively solve DTP.
As shown in Table 1, Table 2 and Table 3, we also list the results obtained by the initialization procedure in the column Init. After calling the initialization procedure ( I n i t _ R C L ), we get a population. Therefore, the value of I n i t represents the best objective value among the population over 20 independent times run. By comparing the values of the columns I n i t and B e s t of our algorithm GAITLS, we can find that the initialization procedure cannot get as good as the final results on almost instances in Table 1, Table 2 and Table 3. In order to show the gap intuitively, we provide Figure 3, Figure 4 and Figure 5. The blue and orange cures represent the values of the column I n i t and B e s t respectively. From these figures, we also can observe that there always exists gaps between I n i t and B e s t .

4.2. Analysis and Discussion

In this section, we analyse the computational complexity of the initialization procedure (Algorithm 1) and the iterated local search (Algorithm 2). Meanwhile, we also discuss the difference between our algorithm and the comparative algorithms.
Considering the initialization procedure I n i t _ R C L , when constructing an individual at each iteration the R C L need be maintained and a vertex will be selected from the R C L . At most | V | is added to the dominating set, so the computational complexity of I n i t _ R C L is O( | V | × I n d i N u m ), where I n d i N u m is the number of individuals in the population. Regarding the iterated local search based on the score functions (Algorithm 2), we analyse the three phases respectively. For the removing phase, the vertex with highest D s c o r e will be removed, and the D s c o r e of vertexes in N [ v ] and N 2 [ v ] is updated. At most | D T | vertexes can be removed, so the computational complexity is O( | D T | ). The dominating phase is similar to the removing phase and the computational complexity is O( | V \ D T | ). Actually, the connecting phase is with highest computational complexity which depends on the number of components. Although we have preprocessed the shortest paths, we need find the shortest path between the components. However, after the dominating phase the number of components usually is small due to small-scale of the instances.
Regarding the comparative algorithm variable neighborhood search (VNS), it randomly produces an initial solution and use the local search to improve it. For the different neighborhoods, it use different shake strength. However, the local search scan all the vertex pairs to swap, which takes long time and does not use the information of the current solution. The algorithm artificial bee colony for dominating (ABC_DT) is a swarm intelligence techniques. There is an important component in the ABC_DT, that is, the determination of a neighboring solution. The authors propose two methods for determining a solution in the neighborhood of current solution. C N A S - M e t h o d is based on copy a set of dominating nodes from another solution of the population to current solution, whereas M E D I - M e t h o d is based on performing random multiple e d g e - d e l e t i o n - i n s e r t i o n on current solution. C N A S - M e t h o d copies the dominating nodes from another individual but does not consider the effect on the final solution. M E D I - M e t h o d is the random phase. Therefore, we can find VNS and ABC_DT cannot the information of nodes and current solution to guide the search direction. We use the score function D s c o r e and W s c o r e to guide the search towards the better solution, and the mutation with high diversity is applied to increase diversity. Our algorithm GAITLS can balance the greediness and randomness.

5. Summary and Future Work

A hybrid framework combining genetic algorithm with iterated local search GAITLS is proposed for solving the dominating tree problem in this paper. Firstly, two score functions are defined, i.e., D s c o r e and W s c o r e . D s c o r e represents how many vertexes will change the state after adding (removing) one vertex to (from) the solution while W s c o r e is used to evaluate the possible effect on the final sum weight of edges in the minimum spanning tree. D s c o r e and W s c o r e will help make the decision which vertex should be selected to add to or remove from the solution in the initialization procedure and iterated local search. Secondly, the initialization procedure with RCL ( I n i t _ R C L ) is presented to initialize the population. By controlling the parameter α , I n i t _ R C L can balance the greediness and randomness to some extent. Thirdly, the iterated local search ( I T L S ) including three main phases is provided. In the removing phases some vertexes with higher D s c o r e are removed, and dominating phase and connecting phase are used to repair the solution greedily considering the D s c o r e and W s c o r e . Then, the mutation with high diversity is proposed to perturb the individuals to increase the diversity. Finally, the hybrid framework is outlined. The experimental results indicate that GAITLS performs well in solving DTP.
The instances of dominating tree problem are all small-scale. We are interested in the performance of the applied methods. Therefore, we would like to design the efficient algorithm to solve DTP on the large-scale instances.

Author Contributions

Software, H.L. and S.H.; Methodology, R.L. and H.L.; Writing—original draft preparation, S.H. and H.L.; Writing—review and edit, J.W., X.W. and J.Z.

Funding

This work is supported by Jilin education department 13th five-year science and technology project under Grant Nos. JJKH20190726KJ, JJKH20190756SK, JJKH20180465KJ, the National Natural Science Foundation of China (NSFC) under Grant Nos. 61502464, 61503074, 61806082, and the Fundamental Research Funds for the Central Universities 2412019FZ050.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Shin, I.; Shen, Y.; Thai, M.T. On approximation of dominating tree in wireless sensor networks. Optim. Lett. 2010, 4, 393–403. [Google Scholar] [CrossRef]
  2. Sundar, S.; Singh, A. New heuristic approaches for the dominating tree problem. Appl. Soft Comput. 2013, 13, 4695–4703. [Google Scholar] [CrossRef]
  3. Sundar, S. A steady-state genetic algorithm for the dominating tree problem. In Asia-Pacific Conference on Simulated Evolution and Learning; Springer: Cham, Switzerland, 2014; pp. 48–57. [Google Scholar]
  4. Chaurasia, S.N.; Singh, A. A hybrid heuristic for dominating tree problem. Soft Comput. 2016, 20, 377–397. [Google Scholar] [CrossRef]
  5. Dražić, Z.; Čangalović, M.; Kovačević-Vujčić, V. A metaheuristic approach to the dominating tree problem. Optim. Lett. 2017, 11, 1155–1167. [Google Scholar] [CrossRef]
  6. Álvarez-Miranda, E.; Luipersbeck, M.; Sinnl, M. An exact solution framework for the minimum cost dominating tree problem. Optim. Lett. 2018, 22, 1669–1681. [Google Scholar] [CrossRef]
  7. Adasme, P.; Andrade, R.; Leung, J.; Lisser, A. Improved solution strategies for dominating trees. Expert Syst. Appl. 2018, 100, 30–40. [Google Scholar] [CrossRef]
  8. Singh, K.; Sundar, S. Two new heuristics for the dominating tree problem. Appl. Intell. 2018, 48, 2247–2267. [Google Scholar] [CrossRef]
  9. Tang, K.; Mei, Y.; Yao, X. Memetic algorithm with extended neighborhood search for capacitated arc routing problems. IEEE Trans. Evol. Comput. 2009, 13, 1151–1166. [Google Scholar] [CrossRef]
  10. Kannan, S.S.; Ramaraj, N. A novel hybrid feature selection via Symmetrical Uncertainty ranking based local memetic search algorithm. Knowl. Based Syst. 2010, 23, 580–585. [Google Scholar] [CrossRef]
  11. Wang, Y.; Hao, J.K.; Glover, F.; Lv, Z. A tabu search based memetic algorithm for the maximum diversity problem. Eng. Appl. Artif. Intell. 2014, 27, 103–114. [Google Scholar] [CrossRef]
  12. Kim, H.; Liou, M.S. Adaptive directional local search strategy for hybrid evolutionary multiobjective optimization. Appl. Soft Comput. J. 2014, 19, 290–311. [Google Scholar] [CrossRef]
  13. Lara, A.; Sanchez, G.; Coello, C.A.C.; Schutze, O. HCS: A new local search strategy for memetic multiobjective evolutionary algorithms. IEEE Trans. Evol. Comput. 2010, 14, 112–132. [Google Scholar] [CrossRef]
  14. Molina, D.; Lozano, M.; Herrera, F. MA-SW-Chains: Memetic algorithm based on local search chains for large scale continuous global optimization. In Proceedings of the IEEE Congress on Evolutionary Computation, Barcelona, Spain, 18–23 July 2010. [Google Scholar]
  15. Li, R.; Hu, S.; Zhang, H.; Yin, M. An efficient local search framework for the minimum weighted vertex cover problem. Inf. Sci. Intern. J. 2016, 372, 428–445. [Google Scholar] [CrossRef]
  16. Tompkins, D.A.D.; Hoos, H.H. Scaling and Probabilistic Smoothing: Dynamic Local Search for Unweighted MAX-SAT. Lect. Notes Comput. Sci. 2003, 2671, 145–159. [Google Scholar]
  17. Thornton, J.; Pham, D.N.; Bain, S.; Ferreira, V., Jr. Additive versus Multiplicative Clause Weighting for SAT. In Proceedings of the 19th National Conference on Artifical Intelligence, San Jose, CA, USA, 25–29 July 2004. [Google Scholar]
  18. Li, R.; Hu, S.; Gao, J.; Zhou, Y.; Wang, Y.; Yin, M. GRASP for connected dominating set problems. Neural Comput. Appl. 2016, 28, 1059–1067. [Google Scholar] [CrossRef]
  19. Argüello, M.F.; Bard, J.F.; Yu, G. A Grasp for Aircraft Routing in Response to Groundings and Delays. J. Comb. Optim. 1997, 1, 211–228. [Google Scholar] [CrossRef]
  20. Marinakis, Y.; Migdalas, A.; Pardalos, P.M. A Hybrid Genetic-GRASP Algorithm Using Lagrangean Relaxation for the Traveling Salesman Problem. J. Comb. Optim. 2005, 10, 311–326. [Google Scholar] [CrossRef]
  21. Prim, R.C. Shortest Connection Networks and Some Generalizations. Bell Labs Tech. J. 1957, 36, 1389–1401. [Google Scholar] [CrossRef]
  22. Markus Sinnl DTP Instances. Available online: https://msinnl.github.io/pages/instancescodes.html (accessed on 3 February 2016).
Figure 1. An example of dominating set on the graph.
Figure 1. An example of dominating set on the graph.
Mathematics 07 00359 g001
Figure 2. An example of dominating tree on the graph.
Figure 2. An example of dominating tree on the graph.
Mathematics 07 00359 g002
Figure 3. GAITLS performance analysis in Table 1.
Figure 3. GAITLS performance analysis in Table 1.
Mathematics 07 00359 g003
Figure 4. GAITLS performance analysis in Table 2.
Figure 4. GAITLS performance analysis in Table 2.
Mathematics 07 00359 g004
Figure 5. GAITLS performance analysis in Table 3.
Figure 5. GAITLS performance analysis in Table 3.
Mathematics 07 00359 g005
Table 1. Experimental results of VNS and GAITLS on small size instances of dtp.
Table 1. Experimental results of VNS and GAITLS on small size instances of dtp.
VNS GAITLS
InstancesOptBestAvgAvgTime InitBestAvgAvgTime
dtp_10_15_05.895.895.890.04 5.895.895.890
dtp_10_15_114.4214.4214.420.04 14.4214.4214.420
dtp_10_15_214.3514.3514.350.04 16.7214.3514.350
dtp_15_20_018.8718.8718.870.1 22.6518.8718.870
dtp_15_20_123.0323.0323.030.09 29.8423.0323.030
dtp_15_20_224.9524.9524.950.1 29.1124.9524.950
dtp_15_30_018.218.218.20.11 19.718.218.20
dtp_15_30_18.328.328.320.08 8.328.328.320
dtp_15_30_218.0718.0718.070.09 23.2118.0718.070
dtp_20_30_033.8133.8133.810.22 38.3933.8133.810
dtp_20_30_136.0336.0336.030.2 41.7336.0336.030
dtp_20_30_243.543.543.50.23 51.1143.543.50
dtp_20_50_09.819.819.810.17 9.819.819.810
dtp_20_50_112.1912.1912.190.16 16.0812.1912.190
dtp_20_50_217.4217.4217.420.2 23.1617.4217.420
Table 2. Experimental results of VNS and GAITLS on large instances of dtp.
Table 2. Experimental results of VNS and GAITLS on large instances of dtp.
VNS GAITLS
InstancesOptBestAvgAvgTime InitBestAvgAvgTime
dtp_100_150_0152.57152.57154.61294.95 174.62152.57152.57186.2
dtp_100_150_1192.21192.21194.22286.39 210.8192.21192.210
dtp_100_150_2146.34146.34148.35245.61 154.66146.34146.340.06
dtp_100_200_0135.04135.04136.41333.91 167.1135.04135.0461.29
dtp_100_200_191.8891.8892.03133.19 126.4591.8891.880
dtp_100_200_2115.93115.93117.11372.14 125.66115.93115.930.34
dtp_200_400_0257.09306.06343.95565.14 310.67257.09257.0982.77
dtp_200_400_1258.77303.53331.1559.42 311.48258.93258.93413.3
dtp_200_400_2238.27274.37289.51550.36 278.42238.29238.2923.32
dtp_200_600_0121.62132.49150.39553.69 156.37121.62121.62194
dtp_200_600_1135.08162.92198.21556.62 170.37135.08135.081.62
dtp_200_600_2123.31139.08154.36520.87 159.21123.31123.317.1
dtp_300_600_0348.03471.69494.62538.95 398.76348.03348.03479.49
dtp_300_600_1413.93494.91542.46544.27 466.84415.32415.3261.53
dtp_300_600_2352.15500.72535.3533.8 398.46358.53358.5310.31
dtp_300_1000_0na257.72264.33575.1 201.76149.57149.57470.12
dtp_300_1000_1na242.79325.16530.51 231.97165.19165.19312.21
dtp_300_1000_2na223.18251.41482.59 202.25154.61154.617.64
Table 3. Experimental results of ABC_DT and GAITLS on instances of range.
Table 3. Experimental results of ABC_DT and GAITLS on instances of range.
ABC_DTP GAITLS
InstancesOptBestAvgAvgTime InitBestAvgAvgTime
R100_50_11024.411204.411204.410.44 1286.311024.411024.410.06
R100_50_21340.441340.441340.690.64 1398.511340.441340.446.17
R100_50_31316.391316.391316.390.56 1399.711316.391316.392.56
R100_100_11217.471217.471218.591.11 1273.021217.471217.65293.83
R100_100_21128.41128.41136.51.12 1281.331128.41128.415.1
R100_100_31252.991252.991253.31.2 1351.871252.991252.99279.04
R125_50_1802.95802.95802.950.24 827.44802.95802.950.01
R125_50_21055.11055.11055.10.32 1149.881055.11055.11.02
R125_50_3877.77877.77877.830.32 941877.77877.770.13
R125_100_1943.01943.01943.010.77 1010.95943.01943.0182.89
R125_100_2917917917.380.71 1030.15917917.22196.02
R125_100_3998.18998.18999.911.06 1080.4998.18998.186.76
R150_50_1647.75647.75647.750.19 666.08647.75647.753.04
R150_50_2863.69863.69864.040.27 925863.39863.390.59
R150_50_3743.94743.94745.680.18 847.22743.94743.9449.07
R150_100_1876.69876.69877.020.57 985.28876.69876.6914.28
R150_100_2657.35657.35657.530.66 727.84657.35659.35108.41
R150_100_3722.87722.87722.870.54 730.37722.87722.870.27

Share and Cite

MDPI and ACS Style

Hu, S.; Liu, H.; Wu, X.; Li, R.; Zhou, J.; Wang, J. A Hybrid Framework Combining Genetic Algorithm with Iterated Local Search for the Dominating Tree Problem. Mathematics 2019, 7, 359. https://doi.org/10.3390/math7040359

AMA Style

Hu S, Liu H, Wu X, Li R, Zhou J, Wang J. A Hybrid Framework Combining Genetic Algorithm with Iterated Local Search for the Dominating Tree Problem. Mathematics. 2019; 7(4):359. https://doi.org/10.3390/math7040359

Chicago/Turabian Style

Hu, Shuli, Huan Liu, Xiaoli Wu, Ruizhi Li, Junping Zhou, and Jianan Wang. 2019. "A Hybrid Framework Combining Genetic Algorithm with Iterated Local Search for the Dominating Tree Problem" Mathematics 7, no. 4: 359. https://doi.org/10.3390/math7040359

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop