Next Article in Journal
Sensor Control in Anti-Submarine Warfare—A Digital Twin and Random Finite Sets Based Approach
Previous Article in Journal
Entropy, Fluctuations, and Disordered Proteins
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Ant Colony Optimization Based on Information Entropy for Constraint Satisfaction Problems

1
School of Computer Science and Engineering, Northeastern University, Shenyang 110819, China
2
School of Information Science and Technology, North China University of Technology, Beijing 100144, China
*
Author to whom correspondence should be addressed.
Entropy 2019, 21(8), 766; https://doi.org/10.3390/e21080766
Submission received: 5 July 2019 / Revised: 28 July 2019 / Accepted: 3 August 2019 / Published: 6 August 2019

Abstract

:
Solving the constraint satisfaction problem (CSP) is to find an assignment of values to variables that satisfies a set of constraints. Ant colony optimization (ACO) is an efficient algorithm for solving CSPs. However, the existing ACO-based algorithms suffer from the constructed assignment with high cost. To improve the solution quality of ACO for solving CSPs, an ant colony optimization based on information entropy (ACOE) is proposed in this paper. The proposed algorithm can automatically call a crossover-based local search according to real-time information entropy. We first describe ACOE for solving CSPs and show how it constructs assignments. Then, we use a ranking-based strategy to update the pheromone, which weights the pheromone according to the rank of these ants. Furthermore, we introduce the crossover-based local search that uses a crossover operation to optimize the current best assignment. Finally, we compare ACOE with seven algorithms on binary CSPs. The experimental results revealed that our method outperformed the other compared algorithms in terms of the cost comparison, data distribution, convergence performance, and hypothesis test.

1. Introduction

The constraint satisfaction problem (CSP) is an assignment that consists of a set of variables that satisfy some constraints [1,2,3,4]. CSP can be solved by assigning specific values to variables in accordance with the constraint conditions [5,6,7,8]. The problem has been applied in a multitude of domains in real life, such as scheduling [9,10], task planning [11,12], gate assignment [13,14], and the reserve design problem [15,16].
To solve the CSP, complete methods based on the backtracking mechanism [17,18] explore all possible solutions until they find a feasible solution or prove the non-existence of any solution at all. These complete methods are often integrated with filtering technologies, which are effective in the reduction of the domains. Although the completeness appears to be an ideal property, it is difficult to solve high complex CSPs.
As a result, incomplete methods that include pure random walk (PRW) algorithms [5,19] and evolutionary optimization algorithms [20] have been proposed to find the approximately optimal solution in an opportunistic way. The incomplete methods tend to randomly explore the space and follow heuristic means to search for the most promising domains. The efficiency of the PRW algorithms has been already proved by the in-depth studies on some applications of CSPs. However, they could not ensure the quality of solutions as usual. On the premise of guaranteeing the quality of solutions, evolutionary optimization algorithms can greatly improve the search speed.
In recent years, evolutionary optimization algorithms have attracted attention for solving the CSP. EEMDE is a hybrid meta-heuristic differential evolution (DE) algorithm with an element exchange mechanism, and the mechanism uses the individual differential direction of moving length to maintain the population diversity [21]. PS is a discrete particle swarm optimization (PSO) algorithm that uses information about the conflicts between the variables to calculate the velocity of the individual particles [22]. GSABC is a hybrid algorithm combining artificial bee colony (ABC) and greedy local search technology [23]. ACOS [24], ACOD [24], ACON [25] and ACOU [26] are ACO-based algorithms for tackling the problem. ACOS makes use of the smallest-domain-first strategy to reinforce the search process, whereas ACOD applies the dynamic-random strategy to achieve that. ACON takes advantage of a negative-feedback mechanism to make the ant swarm explore the unknown space in the optimization process. ACOU uses a strengthened pheromone updating mechanism to enhance the pheromone on the edge that has never appeared before according to the dynamic information in the optimization process. Among these evolutionary algorithms, the performance of the ACO-based algorithms is superior.
When using the ACO-based algorithms to solve the CSP, the main task is to construct a feasible assignment that does not violate any constraints. Due to a large number of constraints, the feasible assignment is very hard to find in most test cases. Thus, the ACO-based algorithms try to find an assignment with a low cost value as much as possible. Although some ACO-based algorithms have been proven to be able to solve the CSP, they are still easily trapped in a locally optimal state. In this paper, an incomplete method based on ACO is proposed to solve CSPs. The new algorithm is abbreviated as ACOE, which stands for ant colony optimization based on information entropy. The idea of ACOE is that a crossover-based local search (CLS) is automatically called according to the feedback of information entropy.
The contributions of the paper are listed as follows. (1) A ranking-based pheromone updating strategy is incorporated into the ACOE algorithm to strengthen the exploratory ability of ants. (2) An automatic adjustment mechanism based on information entropy is proposed. By using the mechanism, the proposed algorithm can perform a local search when the algorithm falls into the local optimal state. (3) A crossover-based local search is used in the ACOE algorithm. Through automatically calling the CLS, ACOE is capable of maintaining the diversity of constructed assignments, and accordingly, improve the quality of the assignments.
The remaining parts of this paper are structured as follows. Section 2 gives the definition of CSP and describes the proposed ACOE algorithm for solving the CSP. Section 3 reports and discusses the experimental results. Section 4 draws the conclusion.

2. Methods

2.1. Problem Definition

We defined a CSP to be a triple (X, D, C), where X is a finite set of variables, D is a function that associates each variable with its domain, and C is a set of constraints that restrict the values that the variables can assign at the same time. A label <xi, vp> associates variable xi with a value vp from the domain D(xi). An assignment A is a set of labels where no variables appear more than once. To solve a CSP more conveniently, we represent the CSP (X, D, C) as an undirected graph G = (V, E), where V is the vertex and E is the edge. In the constructed graph, a possible label is represented by a vertex. A path containing <xi, vp> cannot contain another label for variable xi, otherwise a constraint is violated. The cost function of an assignment A, represented by cost(A), is the number of violated constraints in the assignment A. The cost is 0 if the assignment does not violate any constraints.
Let us give an example of the CSP. Suppose X = {x1, x2, x3, x4}, D = {v1, v2, v3}, and C = {c12, c23, c34} where c12 = {(v1, v2), (v2, v3)}, c23 = {(v3, v2), (v2, v1)}, and c34 = (v1, v3). As shown in Figure 1a, the assignment does not violate any constraints is {<x1, v1>, <x2, v2>, <x3, v1>, <x4, v3>}, and the cost value of the assignment is 0. As shown in Figure 1b, the assignment {<x1, v1>, <x2, v2>, <x3, v1>, <x4, v1>} that violates one constraint because <x3, v1> and <x4, v1> can not be connected, hence the cost value of the assignment is 1.

2.2. Original Ant Colony Optimization (ACO)

ACO, proposed by Dorigo et al. [27], solves the optimization problem by simulating the behavior of real ants finding the shortest path between the nest and the food source. The ACO algorithm has the characteristics of distributed computing, information positive feedback, and heuristic search. At present, the algorithm has achieved good results in CSPs.
In ACO, artificial ants live in a discrete world, and their movement is essentially a transition from one discrete state to another. Each artificial ant releases the pheromone after constructing an assignment, and the amount of pheromone released is directly proportional to the quality of the assignment. The probability that the assignment is selected is determined by a probability distribution formula, which is updated by pheromones, heuristic information, and weights. As the probability distribution function is updated, the better assignment will be selected by subsequent ants with a higher probability. At the same time, a small portion of the pheromone is released on each assignment, allowing the ants to try to find assignments that have not been selected before.

2.3. Ant Colony Optimization Based on Information Entropy (ACOE)

ACOE follows the basic ACO algorithm for solving CSPs, and the process is shown in Algorithm 1. At each iteration, ant k constructs an assignment Ak. If the cost of Ak is lower than that of the current best assignment bestA, bestA is replaced by Ak; otherwise, bestA is unchanged. Then, the pheromone value on each vertex is updated. The optimization process is repeated until a solution is found by an ant or the maximum number of iterations Nmax is reached. In the following, we first described the assignment construction and the ranking-based pheromone updating. Then, we introduced the automatic adjustment mechanism based on information entropy and the crossover-based local search. Finally, we discussed parameter settings.
Algorithm 1 ACOE
Input: a CSP (X, D, C), maximum number of iterations Nmax, number of ants Nant
Output:bestA
1: Initialization
2: repeat
3:   for k = 1 to Nant do
4:     Construct a complete assignment Ak
5:     if cost(Ak) < cost(bestA) then
6:        bestAAk
7:     end if
8:     if the condition is satisfied then
9:        bestA ← CLS(bestA)
10:    end if
11:  end for
12:  Update pheromone on each vertex
13: until cost(bestA) = 0 ∨ Nmax is reached
14: return bestA

2.3.1. Assignment Construction

For constructing the assignment, each ant starts with an empty assignment and then iteratively selects the next vertex that is not assigned to the assignment. The probability of selecting the vertex of the assignment Ak is defined as:
p A k ( < x i , v p > ) = [ τ A k ( < x i , v p > ) ] α [ η A k ( < x i , v p > ) ] β p = 1 m [ τ A k ( < x i , v p > ) ] α [ η A k ( < x i , v p > ) ] β ,
η A k ( < x i , v p > ) = 1 1 + cos t ( ( < x i , v p > ) A ) cos t ( A ) ,
where τAk(<xi, vp>) is the pheromone value on the vertex <xi, vp>; α is the parameter determining the weight of the pheromone value; ηAk(<xi, vp>) is the heuristic information of selecting the vertex <xi, vp> [28], which is inversely proportional to the number of new violated constraints when assigning <xi, vp> to Ak; β is the parameter determining the weight of the heuristic information; m is the number of values for each variable. The pseudo-code of the assignment constructed by ant k is given in Algorithm 2.
Algorithm 2 Assignment Construction
Input: ant k
Output:Ak
1: Selects a starting vertex <xi, vp>
2: Place ant k on the vertex <xi, vp>
3: Ak ← <xi, vp>
4: while |Ak| < |X| do
5:     Select vertex <xj, vq> that is not assigned to Ak
6:     Move ant k to <xj, vq>
7:     AkAk ∪ <xj, vq>
8: end while
9: return Ak

2.3.2. Ranking-Based Pheromone Updating

After each ant constructs a complete assignment, the pheromone values are updated. In ACOE, the ants are sorted by the costs of the constructed assignments, and the contribution of the pheromone updating is weighted according to the rank r of the ant. We used the weight r for the r-th best ant. Thus, the pheromone values were updated by:
τ A k ( < x i , v p > ) = ( 1 ρ ) τ A k ( < x i , v p > ) + Δ τ A k ( < x i , v p > ) i f     τ A k ( < x i , v p > )     < τ min ,        t h e n        τ A k ( < x i , v p > )     τ min i f     τ A k ( < x i , v p > )      > τ max ,        t h e n        τ A k ( < x i , v p > )     τ max
Δ τ A k ( < x i , v p > ) = { 1 r * cos t ( A k ) i f      ant   k   is   the   r - th   best   ant 0        o t h e r w i s e ,
where ρ is the pheromone evaporation rate (0 < ρ < 1); r is the ranking index; and ∆τAk(<xi, vp>) is the increased pheromone caused by the ant k. If ant k is the r-th best ant, the increased pheromone on the vertex <xi, vp> belonging to the assignment Ak is inversely proportional to the cost multiplied by r. A smaller r causes more pheromones to be increased on the vertices belonging to the assignment.
As indicated by (3), the range of τAk is between the minimum pheromone τmin and the maximum pheromone τmax in the condition of τminτAkτmax (0 < τminτmax) [28]. Once the value of τAk exceeds the range, the value will change to the nearest end-point.
The degree to which the global information is contributed depends on the quality of the generated assignments. A better assignment is more likely to make a greater contribution to the future assignments. The pheromone updating strategy based on ant ranking make assignments with lower costs more contribution to the global optimization. Thus, the global search ability of ACOE is enhanced.

2.3.3. Automatic Adjustment Mechanism Based on Information Entropy

Information entropy is used to measure the expected value of a random variable. The larger the information entropy of a variable, the greater its uncertainty, that is, more information is needed to determine this variable. The information entropy of an assignment is the sum of the information entropy of all variables:
H ( A k ) = i = 1 n p = 1 m p A k ( < x i , v p > ) log p A k ( < x i , v p > ) ,
where pAk(<xi, vp>) is the probability that the vertex <xi, vp> is selected in the assignment Ak; n is the number of variable; m is the number of value; H(Ak) is the information entropy of the assignment constructed by ant k; and the logarithm takes 2 as the base. ACOE solves the CSP by constantly comparing the current global best assignment and the best assignment in the current iteration. The comparison process for the two assignments is defined in the formula below:
| H ( b e s t A ) H ( b e s t t A ) | < θ ,
where H(BestA) is the current global best assignment; H(BesttA) is the best assignment in the tth iteration; and θ is the specified switch parameter.
At the beginning of ACOE, the pheromones on each vertex are equal and the information entropy is the largest. As the number of iterations increases, the pheromones on the vertices that found by ants increase, whereas the pheromones on the other vertices decrease. At the same time, the changing process of these pheromones leads to a reduction in the information entropy of each assignment. When the difference between H(BestA) and H(BesttA) is very small, the proposed algorithm performs a local search (see Section 2.3.4).

2.3.4. Crossover-Based Local Search

To enhance the search ability of ACOE, we incorporated a local search (LS) into the proposed algorithm. The LS uses a crossover operation to optimize the current best assignment. Thus, this LS is called CLS. For solving CSPs, assignments with lower costs are generally more inclined to be selected by ants. Therefore, the excellent assignments with lower costs are selected to explore its neighborhood by using the CLS procedure, and better assignments are expected to be obtained. In ACOE, a crossover operation is performed if the difference of the information entropy between the current global best solution and the best solution in the tth iteration is less than θ. The current best assignment and other randomly selected assignments will be crossed to obtain a new assignment. Suppose the current best assignment is bestA = {<x1, v1>, <x2, v2>, <x3, v3>, …, <xn−1, vn−1>, <xn, vn>}, where n is the number of variables; the randomly selected assignment is {<x1, v1>, <x2, v3>, <x3, v4>, …, <xn−1, vn−2>, <xn, vn−3>}. We selected a random integer uniformly distributed between 1 and (n−1) as the crossover point, and we assumed 2 was the intersection point in this example. Then, bestA and Au crossed to generate a new assignment C = {<x1, v1>, <x2, v2>, <x3, v4>, …, <xn−1, vn−2>, <xn, vn−3>}. If the newly obtained assignment has a lower cost value than the best assignment, the new assignment will replace the best assignment. Otherwise, the best assignment will be preserved. The pseudo-code of CLS is shown in Algorithm 3.
Algorithm 3 CLS
Input: bestA, number of crossover operations L, number of values m
Output: bestA
1: for u = 1 to L do
2:      Au ← select a random assignment
3:      crossover point ← U [1, m − 1]
4:      C ← Crossover(bestA, Au)
5:      if cost(C) < cost(bestA) then
6:           bestAC
7:      end if
8: end for
9: return bestA

2.3.5. Parameter Setting

ACOE has some parameters: The number of ants Nant, the minimum pheromone τmin, the maximum pheromone τmax, the specified switch parameter θ, the pheromone evaporation rate ρ, and the weight parameters α and β. We briefly analyzed the impact of these parameters on this proposed algorithm. Nant was set to 10: The running time will increase if Nant has a larger value; the cost will increase if Nant has a smaller value. τmin was set to 0.01 and τmax was set to = 4 according to previous studies [24,29]. θ was set to 0.01: If θ has a smaller value, CLS can hardly work; if θ has a larger value, the running time will increase due to calling CLS multiple times. β, α, and ρ have an impact on the exploratory behavior of ants. β was set to 10, α was set to 2, and ρ was set to 0.01. ACOE was run 30 times on the same test case (Test 7) with different combinations of β, α, and ρ. Then, the lowest cost value corresponding to a combination of the three parameters was recorded. The details of the experimental results are shown in Table 1. In the table, β was set to 6, 8, and 10; α was set to 2, 3, 4, and 5; ρ was set to 0.01, 0.02, 0.03, 0.04, and 0.05. The other values represent the lowest costs obtained by ACOE with different β, α, and ρ.

3. Results and Discussion

3.1. Datasets

In the paper, four classes of binary CSP test cases were generated (Class 1, Class 2, Class 3, and Class 4), and each class contained six specific test cases. The generated test cases were represented by four components < n, m, p1, p2 >, where n is the number of variables, m is the domain for each variable, p1 is the connectivity of the constraint graph, and p2 is the tightness of the constraints. Furthermore, the constrainedness of a generated test case can be defined by the k-value (the range is 0 to 1), and the k-value can be calculated according to Equation (7) [30,31]. A CSP is under-constrained and can be solved when k is less than 1, whereas a CSP is over-constrained and usually difficult to solve when k is greater than 1. More details of the generated test cases are shown in Table 2.
k ( n , m , p 1 , p 2 ) = n 1 2 p 1 log m ( 1 1 p 2 ) .

3.2. Cost Comparison

The cost value is an important index to evaluate the performance of the compared algorithms. For each test case, we ran eight algorithms (ACOE, ACOS, ACOD, ACON, ACOU, EEMDE, PS, and GSABC) 30 times respectively. The minimum cost (Min), the average cost (Avg), and the maximum cost (Max) were recorded, and the experimental results are given in Table 3. It can be seen from the table that the minimum cost, the average cost, and the maximum cost increase gradually increased with the growth of the k-value. For the small-scale problems with 100 variables (Test 1–20), the minimum cost values obtained by ACOE were not obviously superior to those obtained by the other compared algorithms. The proposed algorithm was not as good as ACON on Test 18, and it was inferior to ACON and ACOU on Test 20. All the average cost values found by ACOE were the lowest, whereas the maximum cost values obtained by this proposed algorithm were the lowest except for Test 18. For the large–scale problems with 150 variables (Test 21–40), ACOE presents more obvious advantages than the other seven compared algorithms. For the 20 test cases, ACOE gets all the best minimum costs, average costs, and maximum costs.

3.3. Result Distribution Analysis

In this section, we conducted an analysis about the result distribution of the eight compared algorithms. Test 8, Test 18, Test 28, and Test 38 were selected as the representative of each case. For each representative, all of the cost values obtained by each compared algorithm in 30 runs were used as experimental data. We calculated the minimum point, the first quartile, the median, the third quartile, and the maximum point of the cost values of each test case, and then we used the five statistical quantities to draw the box plots (Figure 2). The median was used to describe the concentration of the experimental data, regardless of the maximum or minimum value of the data distribution. As can be seen from these box plots, the median cost of ACOE was lower than that of the other compared algorithms. In addition, the length of the box also reflected the concentration of the data. The box length of ACOE was relatively short on the four test cases. The above analysis indicates that the result distribution of the proposed algorithm was the most concentrated.

3.4. Convergence Analysis

Convergence means that the objective cost value evaluated by an algorithm tends to be stable after several iterations. We compared the convergence of the eight compared algorithms on Test 8, Test 9, Test 10, Test 18, Test 19, Test 20, Test 28, Test 29, Test 30, Test 38, Test 39, and Test 40, and the convergence diagrams are displayed in Figure 3. The running time (millisecond) was 100, 200, 300, 400, 500, 600, and 700, respectively, and these values were served as the scale units of the horizontal axis. The cost of each algorithm under different scale units was recorded in these diagrams. For Test 8, ACOE converged in around 300 ms, ACOU converged in about 400 ms, and the rest of algorithms converged after approximately 600 ms. For Test 20, ACOE converged only after about 250 ms, which was significantly faster than the other algorithms. For Test 28, Test 29, and Test 38, ACOE converged after approximately 300 ms, and the other compared algorithms converge between 350 ms and 550 ms. For Test 9, Test 10, Test 19, Test 30, Test 39, and Test 40, ACOE converged after approximately 400 ms, and the other compared algorithms converged after 450 ms. For Test 18, all the five algorithms were in approximately 450 ms.

3.5. Hypothesis Test

For the purpose of proving the validity of ACOE in coping with CSPs, we used the fisher-indep hypothesis test with a 0.05 confidence level. Thus, a significant difference could be reflected between two algorithms when the p-value was below 0.05. All the cost values obtained by each compared algorithm in 30 runs were collected as experimental data. The comparative results of ACOE with ACOS, ACOD, ACON, ACOU, EEMDE, PS, and GSABC are shown in Table 4. For some small–scale test cases, such as Test 1 and Test 2, ACOE was not significantly different from the other seven compared algorithms. On Test 3 and Test 11, the proposed algorithm was only significantly different from PS. ACOE performed significantly than ACOS and PS on Test 4, and it performed significantly than EEMDE, PS, and GSABC on Test 12, Test 18, and Test 20. On Test 6 and Test 13, the proposed algorithm did not perform significantly better than ACON and ACOU. The proposed algorithm was not significantly better than ACOD and ACOU on Test 7, and it was not significantly better than ACON on Test 9 and Test 19. On the large-scale test cases (Test 21–40), the p-values were less than 0.05 when ACOE was compared to ACOS, ACOD, ACON, ACOU, EEMDE, PS, and GSABC, which indicates ACOE was significantly better than the other algorithms.

4. Conclusions

CSP, as a topic of artificial intelligence, plays an important role in many real-life applications. In the paper, the ACOE algorithm was proposed to deal with the problem. On the generated CSP test cases, the performance of ACOE was evaluated from the aspects of cost comparison, data distribution, convergence performance, and hypothesis test. The results showed that the proposed algorithm had advantages in efficiency and effectiveness. However, there were limitations about the proposed algorithm on the next two aspects. First of all, although we had introduced some measurements to evaluate the performance of different algorithms, it is worth mentioning here that other evaluation measures like running time and standard deviation could be also be applied for a wider range of performance analysis. Secondly, although ACOE was evaluated on 40 test cases, the algorithm was not tested on real datasets. In the future, we will focus on the application of the proposed algorithm on real data.

Author Contributions

Conceptualization, B.G. and Y.Z.; methodology, B.G. and Y.Z.; validation, B.G., Y.Z. and Y.L.; formal analysis, Y.L.; data curation, B.G. and Y.L.; writing—original draft preparation, B.G.; writing—review and editing, B.G., Y.Z. and Y.L.; funding acquisition, Y.Z.

Funding

This work was supported by the National Natural Science Foundation Program of China under Grant 61772124 and the start up of North China University of Technology

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Bodirsky, M.; Martin, B.; Mottet, A. Discrete temporal constraint satisfaction problems. J. ACM 2018, 65, 1–41. [Google Scholar] [CrossRef]
  2. Rutishauser, U.; Slotine, J.J.; Douglas, R.J. Solving constraint-satisfaction problems with distributed neocortical-like neuronal networks. Neural Comput. 2018, 30, 1359–1393. [Google Scholar] [CrossRef] [PubMed]
  3. Yin, B.; Wei, X.; Liu, Y. Finding the most influential product under distribution constraints through dominance tests. Appl. Intell. 2019, 49, 723–740. [Google Scholar] [CrossRef]
  4. Li, H.; Li, Z. A novel strategy of combining variable ordering heuristics for constraint satisfaction problems. IEEE Access 2018, 6, 42750–42756. [Google Scholar] [CrossRef]
  5. Xu, W.; Gong, F. Performances of pure random walk algorithms on constraint satisfaction problems with growing domains. J. Comb. Optim. 2016, 32, 51–66. [Google Scholar] [CrossRef]
  6. Gonzalez-Pardo, A.; Ser, A.J.D.; Camacho, D. Comparative study of pheromone control heuristics in ACO algorithms for solving RCPSP problems. Appl. Soft Comput. 2017, 60, 241–255. [Google Scholar] [CrossRef] [Green Version]
  7. Bacanin, N.; Tuba, M. Firefly algorithm for cardinality constrained mean-variance portfolio optimization problem with entropy diversity constraint. Sci. World J. 2014, 60, 1–16. [Google Scholar] [CrossRef]
  8. Strumberger, I.; Minovic, M.; Tuba, M.; Bacanin, N. Performance of elephant herding optimization and tree growth algorithm adapted for node localization in wireless sensor networks. Sensors 2019, 19, 2515. [Google Scholar] [CrossRef]
  9. Tiwari, P.K.; Vidyarthi, D.P. Improved auto control ant colony optimization using lazy ant approach for grid scheduling problem. Future Gener. Comput. Syst. 2016, 60, 78–89. [Google Scholar] [CrossRef]
  10. Deng, W.; Xu, J.; Zhao, H. An improved ant colony optimization algorithm based on hybrid strategies for scheduling problem. IEEE Access 2019, 7, 20281–20292. [Google Scholar] [CrossRef]
  11. Booth, K.E.C.; Tran, T.T.; Nejat, G. Mixed-integer and constraint programming techniques for mobile robot task planning. IEEE Robot. Autom. Lett. 2016, 1, 500–507. [Google Scholar] [CrossRef]
  12. Deng, W.; Zhang, S.; Zhao, H.; Yang, X. A novel fault diagnosis method based on integrating empirical wavelet transform and fuzzy entropy for motor bearing. IEEE Access 2018, 6, 35042–35056. [Google Scholar] [CrossRef]
  13. Deng, W.; Zhao, H.; Yang, X.; Xiong, J.; Sun, M.; Li, B. Study on an improved adaptive PSO algorithm for solving multi-objective gate assignment. Appl. Soft Comput. 2017, 59, 288–302. [Google Scholar] [CrossRef]
  14. Deng, W.; Sun, M.; Zhao, H.; Li, B.; Wang, C. Study on an airport gate assignment method based on improved aco algorithm. Kybernetes 2018, 47, 20–43. [Google Scholar] [CrossRef]
  15. Paterakis, N.G.; Gibescu, M.; Bakirtzis, A.G.; Catalao, J.P.S. A multi-objective optimization approach to risk-constrained energy and reserve procurement using demand response. IEEE Trans. Power Syst. 2018, 33, 3940–3954. [Google Scholar] [CrossRef]
  16. Zhao, H.; Yao, R.; Xu, L.; Yuan, Y.; Li, G.; Deng, W. Study on a novel fault damage degree identification method using high-order differential mathematical morphology gradient spectrum entropy. Entropy 2018, 20, 682. [Google Scholar] [CrossRef]
  17. Wang, H.; Hu, Z.; Sun, Y.; Su, Q.; Xia, X. Modified backtracking search optimization algorithm inspired by simulated annealing for constrained engineering optimization problems. Comput. Intel. Neurosc. 2018, 4, 1–27. [Google Scholar] [CrossRef] [PubMed]
  18. Zhang, C.; Lin, Q.; Gao, L.; Li, X. Backtracking Search Algorithm with three constraint handling methods for constrained optimization problems. Expert Syst. Appl. 2016, 42, 7831–7845. [Google Scholar] [CrossRef]
  19. Huss, W.; Levine, L.; Savahuss, E. Interpolating between random walk and rotor walk. Random Struct. Algor. 2018, 52, 263–282. [Google Scholar] [CrossRef]
  20. Craenen, B.; Eiben, A.; Van Hemert, J. Comparing evolutionary algorithms on binary constraint satisfaction problems. IEEE Trans. Evol. Comput. 2003, 7, 424–444. [Google Scholar] [CrossRef]
  21. Fu, H. A hybrid differential evolution algorithm for binary csps. Adv. Mater. Res. 2010, 108–111, 328–334. [Google Scholar] [CrossRef]
  22. Schoofs, L.; Naudts, B. Swarm intelligence on the binary constraint satisfaction problem. In Proceedings of the 2002 Congress on Evolutionary Computation, Honolulu, HI, USA, 12–17 May 2002. [Google Scholar]
  23. Aratsu, Y.; Mizuno, K.; Sasaki, H.; Nishihara, S. Experimental evaluation of artificial bee colony with greedy scouts for constraint satisfaction problems. In Proceedings of the 2013 Conference on Technologies and Applications of Artificial Intelligence, Taipei, Taiwan, 6–8 December 2013. [Google Scholar]
  24. Tarrant, F.; Bridge, D. When ants attack: Ant algorithms for constraint satisfaction problems. Artif. Intell. Rev. 2005, 24, 455–476. [Google Scholar] [CrossRef]
  25. Ye, K.; Zhang, C.; Ning, J.; Liu, X. Ant-colony algorithm with a strengthened negative-feedback mechanism for constraint-satisfaction problems. Inf. Sci. 2017, 406, 29–41. [Google Scholar]
  26. Zhang, Q.; Zhang, C. An improved ant colony optimization algorithm with strengthened pheromone updating mechanism for constraint satisfaction problem. Neural Comput. Appl. 2017, 1, 1–12. [Google Scholar] [CrossRef]
  27. Dorigo, M.; Caro, G.D.; Gambardella, L.M. Ant algorithms for discrete optimization. Artif. Intell. 1999, 5, 137–172. [Google Scholar] [CrossRef]
  28. Stützle, T.; Hoos, H.H. Max-min ant system. J. Future Gener. Comput. Syst. 2000, 16, 889–914. [Google Scholar] [CrossRef]
  29. Solnon, C. Ants can solve constraint satisfaction problems. IEEE Trans. Evol. Comput. 2002, 6, 347–357. [Google Scholar] [CrossRef]
  30. Xu, C.; Boussemart, F.; Hemery, F.; Lecoutre, C. Random constraint satisfaction: Easy generation of hard (satisfiable) instances. Artif. Intell. 2007, 171, 514–534. [Google Scholar] [CrossRef] [Green Version]
  31. Fan, Y.; Shen, J. On the phase transitions of random k-constraint satisfaction problems. Artif. Intell. 2011, 175, 914–927. [Google Scholar] [CrossRef] [Green Version]
Figure 1. (a) An assignment does not violate any constraints; and (b) an assignment that violates a constraint.
Figure 1. (a) An assignment does not violate any constraints; and (b) an assignment that violates a constraint.
Entropy 21 00766 g001
Figure 2. Box plots of five compared algorithms.
Figure 2. Box plots of five compared algorithms.
Entropy 21 00766 g002
Figure 3. Convergence diagrams of eight compared algorithms.
Figure 3. Convergence diagrams of eight compared algorithms.
Entropy 21 00766 g003
Table 1. Effects of β, α, and ρ with different settings on Test 7.
Table 1. Effects of β, α, and ρ with different settings on Test 7.
ρβ6810
α234523452345
0.01 282626282525262724252527
0.02 293029292626262825262527
0.03 303130292627262725262628
0.04 293030312827282925262728
0.05 302931302729303126283029
Table 2. Details of generated test cases.
Table 2. Details of generated test cases.
Component SetTest Casep2k
Class 1(100, 4, 0.14, p2)Test 10.100.527
Test 20.120.639
Test 30.140.754
Test 40.160.872
Test 50.180.992
Test 60.201.115
Test 70.221.242
Test 80.241.372
Test 90.261.505
Test 100.281.642
Class 2(100, 8, 0.14, p2)Test 110.120.426
Test 120.140.503
Test 130.160.581
Test 140.180.661
Test 150.200.743
Test 160.220.828
Test 170.240.914
Test 180.261.003
Test 190.281.094
Test 200.301.188
Class 3(150, 4, 0.14, p2)Test 210.060.466
Test 220.080.627
Test 230.100.793
Test 240.120.961
Test 250.141.134
Test 260.161.311
Test 270.181.493
Test 280.201.679
Test 290.221.869
Test 300.242.605
Class 4(150, 8, 0.14, p2)Test 310.100.528
Test 320.120.641
Test 330.140.756
Test 340.160.874
Test 350.180.995
Test 360.201.119
Test 370.221.246
Test 380.241.376
Test 390.261.510
Test 400.281.648
Table 3. Results of the minimum cost, average cost, and maximum cost.
Table 3. Results of the minimum cost, average cost, and maximum cost.
Minimum Cost/Average Cost/Maximum Cost
Test CaseACOEACOSACODACONACOUEEMDEPSGSABC
Test 10/0/00/0/10/1/10/0/10/0/00/1/20/1/10/0/1
Test 20/0/10/1/20/1/20/0/10/1/10/0/10/1/20/1/2
Test 30/0/10/1/40/1/20/1/20/1/20/2/31/2/41/1/3
Test 40/0/20/2/50/1/30/1/30/0/20/2/30/2/40/1/2
Test 50/0/10/1/30/1/30/0/20/1/20/1/21/2/30/1/2
Test 60/2/40/4/60/5/80/3/50/3/40/4/71/4/61/3/5
Test 724/30/3829/35/4229/34/3927/35/4025/32/3928/37/4530/38/4627/36/41
Test 824/28/3530/37/4227/32/3924/33/3925/31/3829/36/4233/40/4931/38/44
Test 927/34/4131/40/4733/42/4729/36/4330/36/4634/42/4836/42/5033/41/46
Test 1032/39/4539/48/5440/48/4737/43/4935/39/4842/50/5742/52/5940/46/53
Test 110/1/10/1/30/1/20/1/20/1/20/1/30/2/40/1/2
Test 120/2/41/3/50/3/50/3/40/2/51/3/62/4/70/3/6
Test 130/4/61/5/71/5/80/5/70/4/71/4/81/5/91/5/8
Test 141/4/72/6/92/8/101/4/81/5/102/7/113/8/122/8/11
Test 150/5/71/6/100/5/100/5/90/5/81/6/101/6/111/5/10
Test 160/6/92/8/102/9/121/8/121/7/123/9/133/10/142/9/13
Test 173/8/145/10/184/10/164/9/154/10/155/11/166/12/195/11/18
Test 185/8/175/11/175/10/174/10/165/9/166/9/187/11/196/10/17
Test 1910/15/2414/19/2512/18/2513/17/2411/17/2514/19/2715/19/2915/18/26
Test 2014/18/2415/20/2714/21/2913/20/2813/19/2716/21/3117/23/3217/21/30
Test 213/4/74/7/105/7/93/5/73/5/85/8/106/10/146/8/11
Test 225/6/117/9/127/10/146/9/147/10/139/13/179/13/198/12/16
Test 236/8/137/11/157/10/156/10/146/11/148/12/178/14/197/12/16
Test 246/9/138/12/167/12/168/12/157/11/159/13/1811/15/208/14/19
Test 255/8/146/12/165/11/165/10/156/11/168/13/1810/15/196/13/17
Test 2624/33/4128/40/4527/39/4526/38/4427/39/4231/42/4933/45/5229/41/48
Test 2753/57/6357/65/7359/64/7256/62/7056/61/7260/68/7865/74/8561/70/83
Test 2850/52/6252/65/7257/64/7053/60/6851/59/6555/66/7559/69/8058/67/79
Test 2959/69/7764/75/8768/77/8863/70/8062/71/8367/78/9070/82/9569/80/92
Test 3065/73/8475/83/9477/89/9566/75/8769/76/8981/95/10585/98/10579/92/98
Test 310/0/00/0/20/1/20/0/10/0/20/1/30/1/20/1/3
Test 320/1/22/4/51/3/40/1/30/2/32/4/63/5/62/3/5
Test 330/2/42/4/72/4/61/3/42/3/52/5/83/6/82/3/6
Test 341/3/62/5/82/5/82/4/72/4/83/5/93/6/102/5/9
Test 351/3/82/6/112/6/101/5/102/5/102/7/113/9/142/7/10
Test 3622/27/3225/32/3925/30/3624/30/3424/29/3429/36/4331/39/4830/38/45
Test 3729/33/4534/41/5435/40/5233/38/4733/39/4938/45/5740/47/6335/45/54
Test 3833/40/4740/51/5738/47/5435/43/4935/42/4839/49/5542/50/5940/49/60
Test 3937/45/5245/53/6044/54/5938/48/5440/47/5644/55/6146/58/6943/56/62
Test 4044/49/5750/59/6653/60/6844/50/5946/52/6155/64/7354/68/7849/59/70
Table 4. Results of the hypothesise.
Table 4. Results of the hypothesise.
Test Case ACOEACOSACODACONACOUEEMDEPSGSABC
Test 1ACOE0.4380.4020.4430.5000.3850.4190.440
ACOS0.5680.4960.5360.5680.4230.4390.560
ACOD0.5980.5040.5730.5980.4340.5030.569
ACON0.5570.4640.4270.5570.4010.4350.494
ACOU0.5000.4320.4020.4430.3850.4190.440
EEMDE0.6150.5770.5660.5990.6150.5790.595
PS0.5810.5610.4970.5650.5810.4210.562
GSABC0.5600.4400.4310.5060.5600.4050.438
Test 2ACOE0.3210.3150.4400.3800.4360.3090.298
ACOS0.6790.4800.6240.6040.6100.4720.465
ACOD0.6850.5200.6380.6090.6170.4770.470
ACON0.5600.3760.3620.4190.4660.3550.350
ACOU0.6200.3960.3910.5810.5110.3840.376
EEMDE0.5640.3900.3830.5340.4890.3750.369
PS0.6910.5280.5270.6450.6160.6250.481
GSABC0.7020.5350.5300.6500.6240.6310.519
Test 3ACOE0.3030.3470.3980.4650.0677.890 × 10−40.187
ACOS0.6970.5800.5890.5980.2140.1770.323
ACOD0.6530.4200.5080.5310.1510.1040.278
ACON0.6020.4110.4920.5170.1430.0970.271
ACOU0.5350.4020.4690.4830.1280.0880.255
EEMDE0.9330.7860.8490.8570.8780.3780.667
PS10.8230.8960.9030.9120.2220.791
GSABC0.8130.6770.7220.7290.7450.3330.209
Test 4ACOE0.0050.2440.2400.3300.1030.0450.309
ACOS0.9950.8740.8650.9450.7080.6650.901
ACOD0.7560.1260.4870.7110.2880.2790.663
ACON0.7600.1350.5130.7200.2960.2900.669
ACOU0.6700.0550.2890.2800.1950.1020.389
EEMDE0.8970.2920.7120.7040.8050.3880.789
PS0.9550.3350.7210.7100.8980.6120.833
GSABC0.6910.0990.3370.3310.6110.2110.167
Test 5ACOE0.2090.2010.4000.3530.3480.1220.341
ACOS0.7910.4580.6810.6200.6120.3660.605
ACOD0.7990.5420.6880.6230.6180.3970.610
ACON0.6000.3190.3120.4760.4700.2090.465
ACOU0.6470.3800.3770.5240.4950.2980.491
EEMDE0.6520.3880.3820.5300.5050.3120.498
PS0.8780.6440.6030.7910.7020.6680.679
GSABC0.6590.3950.3900.5350.5090.5080.321
Test 6ACOE0.0387.765 × 10−50.1140.2666.742 × 10−46.009 × 10−40.043
ACOS0.9620.1020.7770.8910.2890.2760.691
ACOD10.8980.99110.7920.6600.945
ACON0.8860.2230.0090.7680.0670.0590.290
ACOU0.7340.1098.789 × 10−40.2320.0090.0070.176
EEMDE10.7110.2080.9330.9910.3550.887
PS10.7240.3400.9410.9930.6450.892
GSABC0.9570.3090.0550.7100.8240.1130.108
Test 7ACOE0.0390.1650.0450.3891.335 × 10−41.004 × 10−69.876 × 10−4
ACOS0.9610.8580.7200.9330.2210.1150.290
ACOD0.8350.1420.4190.7760.0090.0010.067
ACON0.9550.2800.5810.8950.1130.0620.182
ACOU0.6110.0670.2240.1058.884 × 10−41.453 × 10−40.008
EEMDE10.7790.9910.88710.3990.662
PS10.8850.9990.93810.6010.794
GSABC10.7100.9330.8180.9920.3380.206
Test 8ACOE7.542 × 10−40.0090.0190.0250.0017.544 × 10−85.980 × 10−6
ACOS10.5950.6340.8090.5530.1670.225
ACOD0.9910.4050.5620.6220.4440.0040.027
ACON0.9810.3660.4320.5600.4086.669 × 10−40.004
ACOU0.9750.1910.3880.4400.2087.664 × 10−56.659 × 10−4
EEMDE0.9990.4470.5560.5920.7980.0960.122
PS10.8330.996110.9040.726
GSABC10.7750.9730.99610.8780.274
Test 9ACOE0.0045.545 × 10−70.0540.0295.898 × 10−87.653 × 10−96.645 × 10−6
ACOS0.9960.0050.9130.8347.706 × 10−58.744 × 10−60.012
ACOD10.995110.0041.975 × 10−40.992
ACON0.9460.0874.655 × 10−60.3552.670 × 10−77.980 × 10−87.707 × 10−5
ACOU0.9710.1661.542 × 10−40.6459.994 × 10−61.325 × 10−69.966 × 10−4
EEMDE110.996110.2381
PS111110.7621
GSABC10.9880.008119.642 × 10−41.565 × 10−4
Test 10ACOE1.222 × 10−59.667 × 10−54.448 × 10−40.0078.890 × 10−83.897 × 10−108.754 × 10−7
ACOS11112.238 × 10−59.688 × 10−79.998 × 10−5
ACOD17.766 × 10−40.99318.890 × 10−63.346 × 10−72.346 × 10−5
ACON19.986 × 10−50.0070.9951.565 × 10−68.853 × 10−88.785 × 10−6
ACOU0.9931.867 × 10−58.855 × 10−40.0059.909 × 10−76.678 × 10−93.332 × 10−6
EEMDE111110.9981
PS111110.0021
GSABC111115.323 × 10−44.455 × 10−5
Test 11ACOE0.1850.2060.2950.3100.1827.656 × 10−50.203
ACOS0.8150.5580.6880.7560.3970.2340.502
ACOD0.7940.4420.5970.6980.3350.0080.490
ACON0.7050.3120.4030.6030.3062.276 × 10−40.391
ACOU0.6900.2440.3020.3970.2398.645 × 10−40.295
EEMDE0.8180.6030.6650.6940.7610.2450.610
PS10.7660.992110.7550.873
GSABC0.7970.4980.5100.6090.7050.3900.127
Test 12ACOE0.1560.2560.3200.3550.0025.895 × 10−40.036
ACOS0.8440.5600.5990.6350.3870.3240.425
ACOD0.7440.4400.5520.5800.3450.3030.398
ACON0.6800.4010.4480.5110.2970.2760.345
ACOU0.6450.3650.4200.4890.1890.1800.267
EEMDE0.9980.6130.6550.7030.8110.4580.582
PS10.6760.6970.7240.8200.5420.604
GSABC0.9640.5750.6020.6550.7330.4180.396
Test 13ACOE0.0410.0260.2070.2900.0376.766 × 10−40.025
ACOS0.9590.2080.7510.8760.3090.2200.201
ACOD0.9740.7920.8320.9020.6330.3150.508
ACON0.7930.2490.1680.6990.2130.0430.164
ACOU0.7100.1240.0980.3010.1171.006 × 10−40.095
EEMDE0.9630.6910.3670.7870.8830.2790.361
PS10.7800.6850.95710.7210.681
GSABC0.9750.7990.4980.8360.9050.6390.319
Test 14ACOE0.0270.0090.1760.0558.560 × 10−46.745 × 10−51.875 × 10−4
ACOS0.9730.2770.6580.5110.1490.0110.085
ACOD0.9910.7230.7750.7330.2560.0950.156
ACON0.8240.3420.2250.4210.0677.790 × 10−40.006
ACOU0.9450.4890.2670.5790.1440.0090.078
EEMDE10.8510.7440.9330.8560.2430.387
PS10.9890.90510.9910.7570.612
GSABC10.9150.8440.9940.9220.6130.388
Test 15ACOE0.0050.0090.0300.0452.674 × 10−46.745 × 10−50.006
ACOS0.9950.5600.7140.9930.3790.2040.507
ACOD0.9910.4400.6650.8980.1250.0550.465
ACON0.9700.2860.3350.6140.0486.443 × 10−40.298
ACOU0.9550.0070.1020.3867.888 × 10−41.999 × 10−50.008
EEMDE10.6210.8750.95210.4990.632
PS10.7960.945110.5010.804
GSABC0.9940.4950.5350.7020.9920.3680.196
Test 16ACOE0.0186.232 × 10−85.178 × 10−74.181 × 10−61.455 × 10−95.743 × 10−108.823 × 10−9
ACOS0.9820.0130.0240.0314.532 × 10−61.094 × 10−77.895 × 10−6
ACOD10.9870.5100.5287.890 × 10−48.643 × 10−50.012
ACON10.9760.4900.6151.658 × 10−41.005 × 10−57.666 × 10−4
ACOU10.9690.4720.3851.005 × 10−58.865 × 10−63.077 × 10−5
EEMDE111110.4110.624
PS111110.5891
GSABC110.988110.3765.565 × 10−4
Test 17ACOE5.167 × 10−83.344 × 10−86.437 × 10−58.222 × 10−45.543 × 10−98.644 × 10−113.534 × 10−10
ACOS10.6040.95110.4010.0870.176
ACOD10.3960.94010.2878.766 × 10−40.005
ACON10.0490.0600.9980.2021.678 × 10−47.748 × 10−4
ACOU17.892 × 10−53.156 × 10−50.0022.453 × 10−61.870 × 10−77.655 × 10−7
EEMDE10.5990.7130.79810.2260.314
PS10.9131110.7740.488
GSABC10.8240.995110.6860.512
Test 18ACOE0.1400.2430.3990.5910.0054.886 × 10−40.001
ACOS0.8600.5600.7020.8740.2540.1080.164
ACOD0.7570.4400.6310.7980.1200.0670.096
ACON0.6010.2980.3690.6130.0570.0060.012
ACOU0.4090.1260.2020.3879.653 × 10−41.654 × 10−48.953 × 10−4
EEMDE0.9950.7460.8800.94310.2370.316
PS10.8920.9330.99410.7630.590
GSABC0.9990.8360.9040.98810.6840.410
Test 19ACOE0.0200.0290.2270.0381.887 × 10−56.673 × 10−73.572 × 10−5
ACOS0.9800.5150.8010.6750.2080.0080.399
ACOD0.9710.4850.7680.5080.0589.777 × 10−40.168
ACON0.7730.1990.2320.4356.330 × 10−48.545 × 10−50.008
ACOU0.9620.3250.4020.5659.565 × 10−42.446 × 10−40.043
EEMDE10.7920.942110.3760.605
PS10.9921110.6240.875
GSABC10.6010.8320.9920.9570.3950.125
Test 20ACOE0.3550.4330.4520.5180.0146.674 × 10−40.003
ACOS0.6450.5770.6000.7730.2760.1680.201
ACOD0.5670.4230.5250.6970.1880.0790.107
ACON0.5480.4000.4750.6400.0980.0070.056
ACOU0.4820.2270.3030.3600.0058.775 × 10−57.653 × 10−4
EEMDE0.9860.7240.8120.9020.9950.2880.316
PS10.8320.9210.99310.7120.664
GSABC0.9970.7990.8930.94410.6840.336
Test 21ACOE0.0270.0310.0470.0427.534 × 10−45.909 × 10−61.166 × 10−5
ACOS0.9730.5990.8680.7720.2450.0230.086
ACOD0.9690.4010.7630.6480.1960.0020.011
ACON0.9530.1320.2370.3360.0559.922 × 10−54.542 × 10−4
ACOU0.9580.2280.3520.6640.1051.005 × 10−49.965 × 10−4
EEMDE10.7550.8040.9450.8950.1980.344
PS10.9770.998110.8020.602
GSABC10.9140.989110.6560.398
Test 22ACOE0.0340.0210.0370.0281.301 × 10−56.446 × 10−65.655 × 10−5
ACOS0.9660.2060.6970.3900.1340.0540.237
ACOD0.9790.7940.8750.6300.3030.2560.379
ACON0.9630.3030.1250.1341.050 × 10−40.0058.659 × 10−4
ACOU0.9720.6100.3700.8660.2010.1180.298
EEMDE10.8660.69710.7990.4060.611
PS10.9460.7440.9950.8920.5940.689
GSABC10.7630.62110.7020.3890.311
Test 23ACOE5.127 × 10−73.654 × 10−66.008 × 10−55.945 × 10−51.334 × 10−98.644 × 10−116.523 × 10−9
ACOS10.6300.8830.7520.0027.674 × 10−40.008
ACOD10.3700.7650.6111.004 × 10−46.653 × 10−58.653 × 10−4
ACON10.1170.2350.3806.678 × 10−82.228 × 10−96.989 × 10−7
ACOU10.2420.3890.6205.809 × 10−67.787 × 10−78.542 × 10−5
EEMDE111110.2490.562
PS111110.7510.957
GSABC111110.4380.043
Test 24ACOE9.878 × 10−62.289 × 10−68.254 × 10−52.634 × 10−51.034 × 10−87.653 × 10−108.777 × 10−9
ACOS10.6350.95111.556 × 10−42.786 × 10−51.002 × 10−4
ACOD10.3750.8700.9668.323 × 10−45.670 × 10−59.997 × 10−5
ACON10.0490.1300.7444.721 × 10−57.341 × 10−61.524 × 10−5
ACOU16.758 × 10−40.0340.2567.753 × 10−66.900 × 10−88.942 × 10−7
EEMDE111117.773 × 10−40.005
PS1111110.628
GSABC111110.9950.372
Test 25ACOE3.657 × 10−50.0370.0464.453 × 10−43.652 × 10−85.653 × 10−107.890 × 10−7
ACOS10.8920.9910.6557.674 × 10−48.342 × 10−50.309
ACOD0.9630.1080.5670.1898.650 × 10−59.765 × 10−79.564 × 10−4
ACON0.9540.0090.4330.1452.760 × 10−54.895 × 10−76.653 × 10−4
ACOU10.3450.8110.8552.008 × 10−43.342 × 10−50.120
EEMDE111110.3050.904
PS111110.6951
GSABC10.691110.8800.0963.342 × 104
Test 26ACOE7.620 × 10−63.986 × 10−61.876 × 10−50.0417.843 × 10−127.780 × 10−146.742 × 10−11
ACOS10.6220.95311.980 × 10−55.432 × 10−69.431 × 10−5
ACOD10.3780.96917.532 × 10−78.854 × 10−84.562 × 10−6
ACON10.0470.0310.9448.809 × 10−89.876 × 10−106.660 × 10−7
ACOU0.9598.424 × 10−43.874 × 10−40.0565.424 × 10−106.563 × 10−128.236 × 10−9
EEMDE111110.3171
PS111110.6831
GSABC111114.523 × 10−46.531 × 10−5
Test 27ACOE2.848 × 10−84.012 × 10−74.645 × 10−68.834 × 10−63.653 × 10−91.009 × 10−92.123 × 10−9
ACOS10.6080.6540.8751.753 × 10−49.784 × 10−41.109 × 10−4
ACOD10.3920.5680.8354.642 × 10−42.006 × 10−51.653 × 10−4
ACON10.3460.4320.5489.842 × 10−58.998 × 10−63.111 × 10−4
ACOU10.1250.1650.4521.778 × 10−53.578 × 10−71.879 × 10−5
EEMDE111110.0140.231
PS111110.9860.527
GSABC111110.7690.473
Test 28ACOE2.006 × 10−96.955 × 10−81.664 × 10−85.115 × 10−71.892 × 10−91.754 × 10−91.056 × 10−9
ACOS10.597110.1040.0030.078
ACOD10.403115.670 × 10−52.085 × 10−57.753 × 10−5
ACON16.167 × 10−46.984 × 10−40.6358.664 × 10−61.167 × 10−65.739 × 10−6
ACOU12.987 × 10−49.120 × 10−40.3656.524 × 10−76.782 × 10−83.745 × 10−7
EEMDE10.8961110.5120.595
PS10.9971110.4880.410
GSABC10.9221110.4050.590
Test 29ACOE4.675 × 10−103.043 × 10−105.783 × 10−83.665 × 10−91.524 × 10−106.785 × 10127.543 × 1011
ACOS10.388115.623 × 10−54.563 × 10−61.245 × 10−5
ACOD10.612117.905 × 10−59.342 × 10−66.894 × 10−5
ACON18.644 × 10−41.226 × 10−50.5967.543 × 10−71.671 × 10−88.990 × 10−8
ACOU19.890 × 10−45.187 × 10−50.4049.532 × 10−76.872 × 10−89.689 × 10−8
EEMDE111110.0010.204
PS111110.9990.606
GSABC111110.7960.394
Test 30ACOE7.453 × 10−101.768 × 10−102.875 × 10−94.093 × 10−98.543 × 10−132.901 × 10−136.453 × 10−11
ACOS10.705116.346 × 10−73.246 × 10−75.895 × 10−6
ACOD10.295112.005 × 10−71.652 × 10−71.564 × 10−6
ACON17.463 × 10−53.658 × 10−50.8116.897 × 10−103.455 × 10−107.090 × 10−8
ACOU18.156 × 10−63.652 × 10−60.1895.675 × 10−101.400 × 10−105.763 × 10−8
EEMDE111110.3981
PS111110.6021
GSABC111114.907 × 10−42.689 × 10−4

Share and Cite

MDPI and ACS Style

Guan, B.; Zhao, Y.; Li, Y. An Ant Colony Optimization Based on Information Entropy for Constraint Satisfaction Problems. Entropy 2019, 21, 766. https://doi.org/10.3390/e21080766

AMA Style

Guan B, Zhao Y, Li Y. An Ant Colony Optimization Based on Information Entropy for Constraint Satisfaction Problems. Entropy. 2019; 21(8):766. https://doi.org/10.3390/e21080766

Chicago/Turabian Style

Guan, Boxin, Yuhai Zhao, and Yuan Li. 2019. "An Ant Colony Optimization Based on Information Entropy for Constraint Satisfaction Problems" Entropy 21, no. 8: 766. https://doi.org/10.3390/e21080766

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