Literature DB >> 29666635

Modified Backtracking Search Optimization Algorithm Inspired by Simulated Annealing for Constrained Engineering Optimization Problems.

Hailong Wang1, Zhongbo Hu1, Yuqiu Sun1, Qinghua Su1, Xuewen Xia2.   

Abstract

The backtracking search optimization algorithm (BSA) is a population-based evolutionary algorithm for numerical optimization problems. BSA has a powerful global exploration capacity while its local exploitation capability is relatively poor. This affects the convergence speed of the algorithm. In this paper, we propose a modified BSA inspired by simulated annealing (BSAISA) to overcome the deficiency of BSA. In the BSAISA, the amplitude control factor (F) is modified based on the Metropolis criterion in simulated annealing. The redesigned F could be adaptively decreased as the number of iterations increases and it does not introduce extra parameters. A self-adaptive ε-constrained method is used to handle the strict constraints. We compared the performance of the proposed BSAISA with BSA and other well-known algorithms when solving thirteen constrained benchmarks and five engineering design problems. The simulation results demonstrated that BSAISA is more effective than BSA and more competitive with other well-known algorithms in terms of convergence speed.

Entities:  

Mesh:

Year:  2018        PMID: 29666635      PMCID: PMC5831937          DOI: 10.1155/2018/9167414

Source DB:  PubMed          Journal:  Comput Intell Neurosci


1. Introduction

Optimization is an essential research objective in the fields of applied mathematics and computer sciences. Optimization algorithms mainly aim to obtain the global optimum for optimization problems. There are many different kinds of optimization problems in real world. When an optimization problem has a simple and explicit gradient information or requires relatively small budgets of allowed function evaluations, the implementation of classical optimization techniques such as mathematical programming often could achieve efficient results [1]. However, many real-world engineering optimization problems may have complex, nonlinear, or nondifferentiable forms, which make them difficult to be tackled by using classical optimization techniques. The emergence of metaheuristic algorithms has overcome the deficiencies of classical optimization techniques to some extent, as they do not require gradient information and have the ability to escape from local optima. Metaheuristic algorithms are mainly inspired from a variety of natural phenomena and/or biological social behavior. Among these metaheuristic algorithms, swarm intelligence algorithms and evolutionary algorithms perhaps are the most attractive [2]. Swarm intelligence algorithms [3] generally simulate the intelligence behavior of swarms of creatures, such as particle swarm optimization (PSO) [4], ant colony optimization (ACO) [5], cuckoo search (CS) [6], and the artificial bee colony (ABC) algorithm [7]. These types of algorithms generally are developed by inspirations from a series of complex behavior processes in swarms with mutual cooperation and self-organization, in which “cooperation” is their core concept. The evolutionary algorithms (EAs) [8, 9] are inspired by the mechanism of nature evolution, in which “evolution” is the key idea. Examples of EAs include genetic algorithm (GA) [10], differential evolution (DE) [11-14], covariance matrix adaptation evolution strategy (CMAES) [15], and the backtracking search optimization algorithm (BSA) [16]. BSA is an iterative population-based EA, which was first proposed by Civicioglu in 2013. BSA has three basic genetic operators: selection, mutation, and crossover. The main difference between BSA and other similar algorithms is that BSA possesses a memory for storing a population from a randomly chosen previous generation, which is used to generate the search-direction matrix for the next iteration. In addition, BSA has a simple structure, which makes it efficient, fast, and capable of solving multimodal problems. BSA has only one control parameter called the mix-rate, which significantly reduces the sensitivity of the initial values to the algorithm's parameters. Due to these characteristics, in less than 4 years, BSA has been employed successfully to solve various engineering optimization problems, such as power systems [17-19], induction motor [20, 21], antenna arrays [22, 23], digital image processing [24, 25], artificial neural networks [26-29], and energy and environmental management [30-32]. However, BSA has a weak local exploitation capacity and its convergence speed is relatively slow. Thus, many studies have attempted to improve the performance of BSA and some modifications of BSA have been proposed to overcome the deficiencies. From the perspective of modified object, the modifications of BSA can be divided into the following four categories. It is noted that we consider classifying the publication into the major modification category if it has more than one modification: Modifications of the initial populations [33-38] Modifications of the reproduction operators, including the mutation and crossover operators [39-47] Modifications of the selection operators, including the local exploitation strategy [48-51] Modifications of the control factor and parameter [52-57]. The research on controlling parameters of EAs is one of the most promising areas of research in evolutionary computation; even a little modification of parameters in an algorithm can make a considerable difference [58]. In the basic BSA, the value of amplitude control factor (F) is the product of three and the standard normal distribution random number (i.e., F = 3 · randn), which is often too large or too small according to its formulation. This may give BSA a powerful global exploration capability at the early iterations; however, it also affects the later exploitation capability of BSA. Based on these considerations, we focus mainly on the influence of the amplitude control factor (F) on the BSA, that is, the fourth of the categories defined above. Duan and Luo [52] redesigned an adaptive F based on the fitness statistics of population at each iteration. Wang et al. [53] and Tian et al. [54] proposed an adaptive F based on Maxwell-Boltzmann distribution. Askarzadeh and dos Santos Coelho [55] proposed an adaptive F based on Burger's chaotic map. Chen et al. [56] redesigned an adaptive F by introducing two extra parameters. Nama et al. [57] proposed a new F to adaptively change in the range of (0.45,1.99) and new mix-rate to randomly change in the range of (0,1). These modifications of F have achieved good effects in the BSA. Different from the modifications of F in BSA described above, a modified version of BSA (BSAISA) inspired by simulated annealing (SA) is proposed in this paper. In the BSAISA, F based on iterations is redesigned by learning a characteristic where SA can probabilistically accept a higher energy state and the acceptance probability decreases with the decrease in temperature. The redesigned F can adaptively decrease as the number of iterations increases without introducing extra parameters. This adaptive variation tendency provides an efficient tradeoff between early exploration and later exploitation capability. We verified the effectiveness and competitiveness of BSAISA in simulation experiments using thirteen constrained benchmarks and five engineering design problems in terms of convergence speed. The remainder of this paper is organized as follows. Section 2 introduces the basic BSA. As the main contribution of this paper, a detailed explanation of BSAISA is presented in Section 3. In Section 4, we present two sets of simulation experiments in which we implemented BSAISA and BSA to solve thirteen constrained optimization and five engineering design problems. The results are compared with those obtained by other well-known algorithms in terms of the solution quality and function evaluations. Finally, we give our concluding remarks in Section 5.

2. Backtracking Search Optimization Algorithm (BSA)

BSA is a population-based iterative EA. BSA generates trial populations to take control of the amplitude of the search-direction matrix which provides a strong global exploration capability. BSA equiprobably uses two random crossover strategies to exchange the corresponding elements of individuals in populations and trial populations during the process of crossover. Moreover, BSA has two selection processes. One is used to select population from the current and historical populations; the other is used to select the optimal population. In general, BSA can be divided into five processes: initialization, selection I, mutation, crossover, and selection II [16].

2.1. Initialization

BSA generates initial population P and initial old population oldP using where P and oldP are the jth individual elements in the problem dimension (D) that falls in ith individual position in the population size (N), respectively, low and up mean the lower boundary and the upper boundary of the jth dimension, respectively, and U is a random uniform distribution.

2.2. Selection I

BSA's selection I process is the beginning of each iteration. It aims to reselect a new oldP for calculating the search direction based on population P and historical population oldP. The new oldP is reselected through the “if-then” rule in where ≔ is the update operation; a and b represent random numbers between 0 and 1. The update operation (see (2)) ensures BSA has a memory. After oldP is reselected, the order of the individuals in oldP is randomly permuted by

2.3. Mutation

The mutation operator is used for generating the initial form of trial population M with where F is the amplitude control factor of mutation operator used to control the amplitude of the search direction. The value F = 3  ·  randn, where randn ~ N(0,1), and N is standard normal distribution.

2.4. Crossover

In this process, BSA generates the final form of trial population T. BSA equiprobably uses two crossover strategies to manipulate the selected elements of the individuals at each iteration. Both the strategies generate different binary integer-valued matrices (map) of size N · D to select the elements of individuals that have to be manipulated. Strategy I uses the mix-rate parameter (mix-rate) to control the numbers of elements of individuals that are manipulated by using ⌈mix-rate · rand · D⌉, where mix-rate = 1. Strategy II manipulates the only one randomly selected element of individuals by using randi(D), where randi ~ U(0, D). The two strategies equiprobably are employed to manipulate the elements of individuals through the “if-then” rule: if map = 1, where n ∈ {1,2,…, N} and m ∈ {1,2,…, D}, then, T is updated with T≔P. At the end of crossover process, if some individuals in T have overflowed the allowed search space limits, they will need to be regenerated by using (1).

2.5. Selection II

In BSA's selection II process, the fitness values in P and T are compared, used to update the population P based on a greedy selection. If T have a better fitness value than P, then, T is updated to be P. The population P is updated by using If the best individual of P (Pbest) has a better fitness value than the global minimum value obtained, the global minimizer will be updated to be Pbest, and the global minimum value will be updated to be the fitness value of Pbest.

3. Modified BSA Inspired by SA (BSAISA)

As mentioned in the introduction of this paper, the research work on the control parameters of an algorithm is very meaningful and valuable. In this paper, in order to improve BSA's exploitation capability and convergence speed, we propose a modified version of BSA (BSAISA) where the redesign of F is inspired by SA. The modified details of BSAISA are described in this section. First, the structure of the modified F is described, before we explain the detailed design principle for the modified F inspired by SA. Subsequently, two numerical tests are used to illustrate that the redesigned F improves the convergence speed of the algorithm. We introduce a self-adaptive ε-constrained method for handling constraints at the end of this section.

3.1. Structure of the Adaptive Amplitude Control Factor F

The modified F is a normally distributed random number, where its mean value is an exponential function and its variance is equal to 1. In BSAISA, we redesign the adaptive F to replace the original version using where i is the index of individuals, F is the adaptive amplitude control factor that corresponds to the ith individual, |ΔI| is the absolute value of the difference between the objective function values of P and T (individual differences), N is the normal distribution, and G is the current iteration. According to (6), the exponential function (mean value) decreases dynamically with the change in the number of iterations (G) and the individual differences (|ΔI|). Based on the probability density function curve of the normal distribution, the modified F can be decreased adaptively as the number of iterations increases. Another characteristic of the modified F is that there are not any extra parameters.

3.2. Design Principle of the Modified Amplitude Control Factor F

The design principle of the modified F is inspired by the Metropolis criterion in SA. SA is a metaheuristic optimization technique based on physical behavior in nature. SA based on the Monte Carlo method was first proposed by Metropolis et al. [59] and it was successfully introduced into the field of combinatorial optimization for solving complex optimization problems by Kirkpatrick et al. [60]. The basic concept of SA derives from the process of physical annealing with solids. An annealing process occurs when a metal is heated to a molten state with a high temperature; then it is cooled slowly. If the temperature is decreased quickly, the resulting crystal will have many defects and it is just metastable; even the most stable crystalline state will be achieved at all. In other words, this may form a higher energy state than the most stable crystalline state. Therefore, in order to reach the absolute minimum energy state, the temperature needs to be decreased at a slow rate. SA simulates this process of annealing to search the global optimal solution in an optimization problem. However, accepting only the moves that lower the energy of system is like extremely rapid quenching; thus SA uses a special and effective acceptance method, that is, Metropolis criterion, which can probabilistically accept the hill-climbing moves (the higher energy moves). As a result, the energy of the system evolves into a Boltzmann distribution during the process of the simulated annealing. From this angle of view, it is no exaggeration to say that the Metropolis criterion is the core of SA. The Metropolis criterion can be expressed by the physical significance of energy, where the new energy state will be accepted when the new energy state is lower than the previous energy state, and the new energy state will be probabilistically accepted when the new energy state is higher than the previous energy state. This feature of SA can escape from being trapped in local minima especially in the early stages of the search. It can also be described as follows. (i) If  ΔE = E − E ≤ 0, then the new state j is accepted and the energy with the displaced atom is used as the starting point for the next step, where E represents the energy of the atom. Both i and j are the states of atoms, and j is the next state of i. (ii) If  ΔE > 0, then calculate the probability of P(ΔE) = exp⁡(−ΔE/kT), and generate a random number θ, which is a uniform distribution over (0,1), where k is Boltzmann's constant (in general, k = 1) and T is the current temperature. If P(ΔE) > θ, then the new energy will be accepted; otherwise, the previous energy is used to start the next step.

Analysis 1 .

The Metropolis criterion states that SA has two characteristics: (1) SA can probabilistically accept the higher energy and (2) the acceptance probability of SA decreases as the temperature decreases. Therefore, SA can reject and jump out of a local minimum with a dynamic and decreasing probability to continue exploiting the other solutions in the state space. This acceptance mechanism can enrich the diversity of energy states.

Analysis 2 .

As shown in (4), F is used to control the amplitude of population mutation in BSA, thus F is an important factor for controlling population diversity. If F is excessively large, the diversity of the population will be too high and the convergence speed of BSA will slow down. If F is excessively small, the diversity of the population will be reduced so it will be difficult for BSA to obtain the global optimum and it may be readily trapped by a local optimum. Therefore, adaptively controlling the amplitude of F is a key to accelerating the convergence speed of the algorithm and maintaining its the population diversity. Based on Analyses 1 and 2, it is clear that if F can dynamically decrease, the convergence speed of BSA will be able to accelerate while maintaining the population diversity. On the other hand, SA possesses this characteristic that its acceptance probability can be dynamically reduced. Based on these two considerations, we propose BSAISA with a redesigned F, which is inspired by SA. More specifically, the new F (see (6)) is redesigned by learning the formulation (P(ΔE)) of acceptance probability, and its formulation has been shown in the previous subsection. For the two formulas of the modified F and P(ΔE), the individual difference (|ΔI|) of a population or the energy difference (ΔE) of a system will decrease as the number of iterations increases in an algorithm, and the temperature of SA tends to decrease, while the iteration of BSA tends to increase. As a result, one can observe the correspondence between modified F and P(ΔE) where the reciprocal of individual difference (1/|ΔI|) corresponds to the energy difference (ΔE) of SA, and the reciprocal of current iteration (1/G) corresponds to the current temperature (T) of SA. In this way, the redesigned F can be decreased adaptively as the number of iterations increases.

3.3. Numerical Analysis of the Modified Amplitude Control Factor F

In order to verify that the convergence speed of the basic BSA is improved with the modified F, two types (unimodal and multimodal) of unconstrained benchmark functions are used to test the changing trends in F and population variances and best function values as the iterations increases, respectively. The two functions are Schwefel 1.2 and Rastrigin, and their detailed information is provided in [61]. The two functions and the user parameters including the populations (N), dimensions (D), and maximum iterations (Max) are shown in Table 1. Three groups of test results are compared in the tests including (1) the comparative curves of the mean values of the modified F and original F for Schwefel 1.2 and Rastrigin, (2) the comparative curves of the mean values of BSA and BSAISA population variances for two functions, and (3) the convergence curves of BSA and BSAISA for two functions. They are depicted in Figures 1, 2, and 3, respectively. Based on Figures 1–3, two results can be observed as follows.
Table 1

Two benchmark functions and the corresponding populations, dimensions, and max iterations.

NameObjective functionRange N D Max
Schwefel 1.2 fx=i=1Dj=1ixj2 [−100,100]10030500
Rastrigin fx=i=1Dxi2-10cos2πxi+10 [−5.12,5.12]10030500

Note. “N” means populations, “D” means dimensions, and “Max” means maximum iterations.

Figure 1

Comparisons of modified F and original F for Schwefel 1.2 and Rastrigin.

Figure 2

The mean values of population variances versus number of iterations using BSA and BSAISA for two functions.

Figure 3

Convergence curves of BSA and BSAISA for two functions.

(1) According to the trends of F in Figure 1, both the original F and modified F are subject to changes from the normal distribution. The mean value of the original F does not tend to decrease as the number of iterations increases. By contrast, the mean value of the modified F exhibits a clear and fluctuating downward trend as the number of iterations increases. (2) According to Figure 2, the population variances of BSAISA and BSA both exhibit a clear downward trend as the number of iterations increases. The population variances of BSAISA and BSA are almost same during the early iterations. This illustrates that the modified F does not reduce the population diversity in the early iterations. In the middle and later iterations, the population variances of BSAISA decrease more quickly than that of BSA. This illustrates that the modified F improves the convergence speed. As can be seen from Figure 3, as the number of iterations increases, the best objective function value of BSAISA drops faster than that of BSA. This shows that the modified F improves the convergence speed of BSA. Moreover, BSAISA can find a more accurate solution at the same computational cost. Summary. Based on the design principle and numerical analysis of the modified F, the modified F exhibits an overall fluctuating and downward trend, which matches with the concept of the acceptance probability in SA. In particular, during the early iterations, the modified F is relatively large. This allows BSAISA to search in a wide region, while maintaining the population diversity of BSAISA. As the number of iterations decreases, the modified F gradually exhibits a decreasing trend. This accelerates the convergence speed of BSAISA. In the later iterations, the modified F is relatively small. This enables BSAISA to fully search in the local region. Therefore, it can be concluded that BSAISA can adaptively control the amplitude of population mutation to change its local exploitation capacity. This may improve the convergence speed of the algorithm. Moreover, the modified F does not introduce extra parameters, so it does not increase the sensitivity of BSAISA to the parameters.

3.4. A Self-Adaptive ε-Constrained Method for Handling Constraints

In general, a constrained optimization problem can be mathematically formulated as a minimization problem, as follows: where X = (x1, x2,…, x) ∈ R is a D-dimensional vector, m is the total number of inequality constraints, and n is the total number of equality constraints. The equality constraints are transformed into inequality constraints by using |h(X)|−δ ≤ 0, where δ is a very small degree of violation, and δ = 1E − 4 in this paper. The maximization problems are transformed into minimization problems using −f(X). The constraint violation φ(X) is given by Several constraint-handling methods have been proposed previously, where the five most commonly used methods comprise penalty functions, feasibility and dominance rules (FAD), stochastic ranking, ε-constrained methods, and multiobjectives concepts. Among these five methods, the ε-constrained method is relatively effective and used widely. Zhang et al. [62] proposed a self-adaptive ε-constrained method (SAε) to combine with the basic BSA for constrained problems. It has been verified that the SAε has a stronger search efficiency and convergence than the fixed ε-constrained method and FAD. In this paper, the SAε is used to combine with BSAISA for constrained optimization problems, which comprises the following two rules: (1) if the constraint violations of two solutions are smaller than a given ε value or two solutions have the same constraint violations, the solution with a better objective function value is preferred and (2) if not, the solution with a smaller constraint violation is preferred. SAε could be expressed by the following equations: where ε is a positive value that represents a tolerance related to constraint violation. The self-adaptive ε value is formulated as the following equation: where t is the number of the current iterations. φ(P0) is the constraint violation of the top θth individual in the initial population. φ(T) is the constraint violation of the top θth individual in the trial population at the current iteration. cp and T are control parameters. Th1 and Th2 are threshold values. εt is related to the iteration t and functions ε1(t) and ε2(t). Firstly, ε0 is set as φ(P0). If the initial value ε0 is bigger than Th1, φ(T) will be assigned to ε2(t); otherwise ε0 will be assigned to ε2(t). Then, if ε2(t) < ε1(t − 1) and ε2(t) is bigger than Th2, ε2(t) will be assigned to ε1(t); otherwise ε1(t − 1) will be assigned to ε1(t). Finally, εt is updated as (14). The detailed information of SAε can be acquired from [62], and the related parameter settings of SAε (the same as [62]) are presented in Table 2.
Table 2

The parameter setting of SAε.

Tc = 0.2∗Tmaxθ = 0.3∗N cp = 5 Th1 = 10Th2 = 2

Note. “Tmax” means the maximum iterations; “N” means populations.

To illustrate the changing trend of the self-adaptive ε value vividly, BSAISA with SAε is used to solve a well-known benchmark constrained function G10 in [61]. The related parameters are set as N = 30, θ = 0.3N, cp = 5, T = 2333, Th1 = 10, and Th2 = 2. The changing trend of ε value is shown in Figure 4. Three sampling points, that is, ε(500) = 0.6033, ε(1000) = 0.1227, and ε(2000) = 1.194E − 4, are marked in Figure 4. As shown in Figure 4, it can be observed that ε value declines very fast at first. After it is smaller than about 2, it declines as an exponential way. This changing trend of ε value could help algorithm to sufficiently search infeasible domains near feasible domains.
Figure 4

Plot of ε value with iteration.

The pseudocode for BSAISA is showed in Pseudocode 1. In Pseudocode 1, the modified adaptive F is shown in lines (14)–(16). When BSAISA deals with constrained optimization problems, the code in line (8) and line (40) in Pseudocode 1 should consider objective function value and constraint violation simultaneously, and SAε is applied to choose a better solution or best solution in line (42) and lines (47)-(48).
Pseudocode 1

Pseudocode of BSAISA.

4. Experimental Studies

In this section, two sets of simulation experiments were executed to evaluate the effectiveness of the proposed BSAISA. The first experiment set performed on 13 well-known benchmark constrained functions taken from [63] (see Appendix A). These thirteen benchmarks contain different properties as shown in Table 3, including the number of variables (D), objective function types, the feasibility ratio (ρ), constraint types and number, and the number of active constraints in the optimum solution. The second experiment is conducted on 5 engineering constrained optimization problems chosen from [64] (see Appendix B). These five problems are the three-bar truss design problem (TTP), pressure vessel design problem (PVP), tension/compression spring design problem (TCSP), welded beam design problem (WBP), and speed reducer design problem (SRP), respectively. These engineering problems include objective functions and constraints of various types and natures (quadratic, cubic, polynomial, and nonlinear) with various number of design variables (continuous, integer, mixed, and discrete).
Table 3

Characters of the 13 benchmark functions.

Fun. D Type ρ (%) LI NI LE NE Active
g0113Quadratic0.000390006
g0220Nonlinear99.997311001
g0310Nonlinear0.000000011
g045Quadratic27.007906002
g054Nonlinear0.000020033
g062Nonlinear0.005702002
g0710Quadratic0.000335006
g082Nonlinear0.858102000
g097Nonlinear0.519904002
g108Linear0.002033003
g112Quadratic0.097300011
g123Quadratic4.7679093000
g135Nonlinear0.000000123

Note. “D” is the number of variables. “ρ” represents feasibility ratio. “LI,” “NI,” “LE,” and “NE” represent linear inequality, nonlinear inequality, linear equality, and nonlinear equality, respectively. “Active” represents the number of active constraints at the global optimum.

The recorded experimental results include the best function value (Best), the worst function value (Worst), the mean function value (Mean), the standard deviation (Std), the best solution (variables of best function value), the corresponding constraint value, and the number of function evaluations (FEs). The number of function evaluations can be considered as a convergence rate or a computational cost. In order to evaluate the performance of BSAISA in terms of convergence speed, the FEs are considered as the best FEs corresponding to the obtained best solution in this paper. The calculation of FEs are the product of population sizes (N) and the number of iterations (Ibest) at which the best function value is first obtained (i.e., FEs = N∗Ibest). For example, if 2500 is the maximum number of iterations for one minimization problem, f(1999) = 0.0126653, f(2000) = 0.0126652, f(2500) = f(2000) = 0.0126652, the Ibest value should be 2000. However, BSAISA needs to evaluate the initial historical population (oldP), so its actual FEs should be plus N (i.e., FEs = N∗Ibest + N).

4.1. Parameter Settings

For the first experiment, the main parameters for 13 benchmark constrained functions are the same as the following: population size (N) is set as 30; the maximum number of iterations (Tmax) is set as 11665. Therefore, BSAISA's maximum number of function evaluations (MFEs) should equal to 34,9980 (nearly 35,0000). The 13 benchmarks were executed by using 30 independent runs. For the 5 real-world engineering design problems, we use slightly different parameter settings since each problem has different natures, that is, TTP (N = 20, Tmax = 1000), PVP (N = 20, Tmax = 3000), TCSP (N = 20, Tmax = 3000), WBP (N = 20, Tmax = 3000), SRP (N = 20, Tmax = 2000). The 6 engineering problems were performed using 50 independent runs. The user parameters of all experiments are presented in Table 4. Termination condition may be the maximum number of iterations, CPU time, or an allowable tolerance value between the last result and the best known function value for most metaheuristics. In this paper, the maximum number of iterations is considered as termination condition. All experiments were conducted on a computer with a Intel(R) Core(TM) i5-4590 CPU @ 3.30 GHz and 4 GB RAM.
Table 4

User parameters used for all experiments.

ProblemG01–G13TTPPVPTCSPWBPSRP
N 302020202020
T max 1166510003000300030002000
Runs305050505050

Note. The expression “runs” denotes the number of independent runs.

4.2. Simulation on Constrained Benchmark Problems

In this section, BSAISA and BSA are performed on the 13 benchmarks simultaneously. Their statistical results obtained from 30 independent runs are listed in Tables 5 and 6, including the best known function value (Best Known) and the obtained Best/Mean/Worst/Std values as well as the FEs. The best known values for all the test problems are derived from [62]. The best known values found by algorithms are highlighted in bold. From Tables 5 and 6, it can be seen that BSAISA is able to find the known optimal function values for G01, G04, G05, G06, G08, G09, G011, G012, and G013; however, BSA fails to find the best known function value on G09 and G13. For the rest of the functions, BSAISA obtains the results very close to the best known function values. Moreover, BSAISA requires fewer FEs than BSA on G01, G03, G04, G05, G06, G07, G08, G09, G011, and G012. Although the FEs of BSAISA are slightly worse than that of BSA for G02, G10, and G13, BSAISA finds more accurate best function values than BSA for G02, G03, G07, G09, G10, and G13.
Table 5

The statistical results of BSAISA for 13 constrained benchmarks.

Fun.Known optimalBestMeanWorstStdFEs
G01−15 −15 −15−15.0000008.08E − 1684,630
G02−0.803619−0.803599−0.787688−0.7585651.14E − 02349,500
G03−1.000500−1.000498−1.000481−1.0004411.35E − 0558,560
G04−30665.538672 −30665.538672 −30665.538672−30665.5386721.09E − 11121,650
G055126.496714 5126.496714 5126.4967145126.4967145.85E − 13238,410
G06−6961.813876 −6961.813876 −6961.813876−6961.8138761.85E − 1289,550
G0724.30620924.30738124.40088124.7582051.02E − 0115,060
G08−0.0958250 −0.0958250 −0.086683−0.0272632.37E − 0230,930
G09680.630057 680.630057 680.633025680.6800439.11E − 03347,760
G107049.2480217049.2490567081.2417897326.8535816.24E + 01346,980
G110.749900 0.749900 0.7499000.7499001.13E − 1687,870
G12−1 −1 −1−105430
G130.0539415 0.0539415 0.10300000.45940339.80E − 02349,800

Note. “Known optimal” denotes the best known function values in the literatures. “Bold” means the algorithm has found the best known function values. The same as Table 6.

Table 6

The statistical results of the basic BSA on 13 constrained benchmarks.

Fun.Known optimalBestMeanWorstStdFEs
G01−15 −15 −15−15.0000006.60E − 1699,300
G02−0.803619−0.803255−0.792760−0.7493269.10E − 03344,580
G03−1.000500−1.000488−0.998905−0.9906002.66E − 03348,960
G04−30665.538672 −30665.538672 −30665.538672−30665.5386721.11E − 11272,040
G055126.496714 5126.496714 5144.0413635275.3847243.99E + 01299,220
G06−6961.813876 −6961.813876 −6961.813876−6961.8138761.85E − 12111,450
G0724.30620924.30760724.34462624.3998961.93E − 02347,250
G08−0.0958250 −0.0958250 −0.0958250−0.09582502.82E − 1773,440
G09680.630057680.630058680.630352680.6324005.63E − 04348,900
G107049.2480217049.2785437053.5738537080.1927007.28E + 00340,020
G110.749900 0.749900 0.7499000.7499001.13E − 16113,250
G12−1 −1 −1−1013,590
G130.05394150.05394200.18169860.54776571.50E − 01347,400
To further compare BSAISA and BSA, the function value convergence curves of 13 functions that have significant differences have been plotted, as shown in Figures 5 and 6. The horizontal axis represents the number of iterations, while the vertical axis represents the difference of the objective function value and the best known value. For G02, G04, G06, G08, G11, and G12, it is obvious that the convergence speed of BSAISA is faster than that of BSA, and its best function value is also better than that of BSA. For G01, G03, G05, G07, G09, G10, and G13, it can be observed that the objective function values of BSAISA and BSA fluctuate in the early iterations, and they decrease as the number of iterations increases during the middle and late stages. This illustrates that both the algorithms are able to escape the local optimum under different degrees, and the convergence curve of BSAISA drops still faster than that of BSA. Therefore, the experiment results demonstrate that the convergence speed of the basic BSA is improved with our modified F.
Figure 5

The convergence curves of the first 9 functions by BSAISA and BSA.

Figure 6

The convergence curves of the latter 4 functions by BSAISA and BSA.

In order to further verify the competitiveness of BSAISA in aspect of convergence speed, we compared BSAISA with some classic and state-of-the-art approaches in terms of best function value and function evaluations. The best function value and the corresponding FEs of each algorithm on 13 benchmarks are presented in Table 7, where the optimal results are in bold on each function. These compared algorithms are listed below:
Table 7

Comparison of the best values and FEs obtained by BSAISA and other algorithms.

Alg.BSAISASRFSACDEAMAMABCRPGABSA-SAε
Fun.Best (FEs)Best (FEs)Best (FEs)Best (FEs)Best (FEs)Best (FEs)Best (FEs)Best (FEs)
G01 −15 −15.000 −14.993316 −15.000000 −15.000 −15.000 −15.000 −15.000000
(84,630)(148,200)(205,748)(100,100)(350,000)(350,000)(350,000)(350,000)
G02 −0.8036 −0.8035−0.7549 −0.8036 −0.8035 −0.8036 −0.8036 −0.8036
(349,500)(217,200)(227,832)(100,100)(350,000)(350,000)(350,000)(350,000)
G03 −1.000498 −1.000−1.0000015−0.995413−1.000−1.000−1.000 −1.000498
(58,560)(229,200)(314,938)(100,100)(350,000)(350,000)(350,000)(350,000)
G04 −30665.539 −30665.539 −30665.538 −30665.539 −30665.538 −30665.539 −30665.539 −30665.539
(121,650)(88,200)(86,154)(100,100)(350,000)(350,000)(350,000)(350,000)
G055126.4975126.4975126.49815126.5715126.512 5126.487 5126.5445126.497
(238,410)(51,600)(47,661)(100,100)(350,000)(350,000)(350,000)(350,000)
G06 −6961.814 −6961.814 −6961.814 −6961.814 −6961.807 −6961.814 −6961.814 −6961.814
(89,550)(118,000)(44,538)(100,100)(350,000)(350,000)(350,000)(350,000)
G0724.30724.30724.311 24.306 24.31524.32424.333 24.306
(15,060)(143,000)(404,501)(100,100)(350,000)(350,000)(350,000)(350,000)
G08 −0.095825 −0.095825 −0.095825 −0.095825 −0.095825 −0.095825 −0.095825 −0.095825
(30,930)(76,200)(56,476)(100,100)(350,000)(350,000)(350,000)(350,000)
G09 680.630057 680.630680.63008 680.630057 680.645680.631680.631680.6301
(347,760)(111,400)(324,569)(100,100)(350,000)(350,000)(350,000)(350,000)
G107049.2497054.3167059.864 7049.248 7281.9577058.8237049.8617049.278
(346,980)(128,400)(243,520)(100,100)(350,000)(350,000)(350,000)(350,000)
G11 0.749900 0.7500.749999 0.749900 0.7500.7500.749 0.749900
(87,870)(11,400)(23,722)(100,100)(350,000)(350,000)(350,000)(350,000)
G12 −1 −1.000000 −1.000000 −1.000000 −1.000 −1.000 NA −1.000000
(5430)(16,400)(59,355)(100,100)(350,000)(350,000)(350,000)
G13 0.0539415 0.0539570.05394980.0561800.0539470.757NA 0.0539415
(349,800)(69,800)(120,268)(100,100)(350,000)(350,000)(350,000)
Nu.6 + 101 + 51 + 34 + 100 + 31 + 70 + 50 + 10
RK15728463

Note. “NA” means not available. The same as Tables 8, 10, 11, 12, 13, 14, 15, and 17. “RK” represents the comprehensive ranking of each algorithm on the set of benchmarks. “Nu.” represents the sum of the number of winners and the number of the optimal function values for each algorithm on the set of benchmarks.

Stochastic ranking (SR) [63] Filter simulated annealing (FSA) [65] Cultured differential evolution (CDE) [66] Agent based memetic algorithm (AMA) [64] Modified artificial bee colony (MABC) algorithm [67] Rough penalty genetic algorithm (RPGA) [68] BSA combined self-adaptive ε constrained method (BSA-SAε) [62]. To compare these algorithms synthetically, a simple evaluation mechanism is used. It can be explained as the best function value (Best) is preferred, and the function evaluations (FEs) are secondary. More specifically, (1) if one algorithm has a better Best than those of others on a function, there is no need to consider FEs and the algorithm is superior to other algorithms on this function. (2) If two or more algorithms have found the optimal Best on a function, the algorithm with the lowest FEs is considered as the winner on the function. (3) Record the number of winners and the number of the optimal function values for each algorithm on the set of benchmarks, and then give the sort for all algorithms. From Table 7, it can be observed that the rank of these 8 algorithms is as follows: BSAISA, CDE, BSA-SAε, MABC, SR, RPGA, FSA, and AMA. Among the 13 benchmarks, BSAISA wins on 6 functions and it is able to find the optimal values of 10 functions. This is better than all other algorithms, thus BSAISA ranks the first. The second algorithm CDE performs better on G02, G07, G09, and G10 than BSAISA but worse on G01, G03, G08, G11, G12, and G13. BSA-SAε obtains the optimal function values of 10 functions but requires more function evaluations than BSAISA and CDE, so it should rank the third. MABC ranks the fourth. It obtains the optimal function values of 7 functions, which are fewer in number than those of the former three algorithms. Both SR and RPGA have found the same number of the optimal function values, while the former is the winner on G04, so SR is slightly better than RPGA. As for the last two algorithms, FSA and AMA just perform well on three functions, while FSA is the winner on G06, so FSA is slightly better than AMA. Based on the above comparison, it can be concluded that BSAISA is effective and competitive in terms of convergence speed.

4.3. Simulation on Engineering Design Problems

In order to assess the optimization performance of BSAISA in real-world engineering constrained optimization problems, 5 well-known engineering constrained design problems including three-bar truss design, pressure vessel design, tension/compression spring design, welded beam design, and speed reducer design are considered in the second experiment.

4.3.1. Three-Bar Truss Design Problem (TTP)

The three-bar truss problem is one of the engineering minimization test problems for constrained algorithms. The best feasible solution is obtained by BSAISA at x = (0.788675, 0.408248) with the objective function value f(x) = 263.895843 using 8940 FEs. The comparison of the best solutions obtained from BSAISA, BSA, differential evolution with dynamic stochastic selection (DEDS) [69], hybrid evolutionary algorithm (HEAA) [70], hybrid particle swarm optimization with differential evolution (POS-DE) [71], differential evolution with level comparison (DELC) [72], and mine blast algorithm (MBA) [73] is presented in Table 8. Their statistical results are listed in Table 9.
Table 8

Comparison of best solutions for the three-bar truss design problem.

MethodDEDSHEAAPSO-DEDELCMBABSABSAISA
X 1 0.7886750.7886800.7886750.7886750.7886750.7886750.788675
X 2 0.4082480.4082340.4082480.4082480.4085600.4082480.408248
g 1(X)1.77E − 08NA−5.29E − 11NA−5.29E − 11−3.23E − 120
g 2(X)−1.464102NA−1.463748NA−1.463748−1.464102−1.464102
g 3(X)−0.535898NA−0.536252NA−0.536252−0.535898−0.535898
f(X) 263.895843 263.895843 263.895843 263.895843 263.895852 263.895843 263.895843
Table 9

Comparison of statistical results for the three-bar truss design problem.

MethodWorstMeanBestStdFEs
DEDS263.895849263.895843 263.895843 9.7E − 0715,000
HEAA263.896099263.895865 263.895843 4.9E − 0515,000
PSO-DE263.895843263.895843 263.895843 4.5E − 1017,600
DELC263.895843263.895843 263.895843 4.3E − 1410,000
MBA263.915983263.897996263.8958523.93E − 0313,280
BSA263.895845263.895843 263.895843 2.64E − 0713,720
BSAISA263.895843263.895843 263.895843 5.75E − 13 8940
From Tables 8 and 9, BSAISA, BSA, DEDS, HEAA, PSO-DE, and DELC all reach the best solution with the corresponding function value equal to 263.895843 except MBA with 263.895852. However, BSAISA requires the lowest FEs (only 8940) among all algorithms. Its Std value is better than BSA, DEDS, HEAA, PSO-DE, and MBA except DELC. These comparative results indicate that BSAISA outperforms other algorithms in terms of computational cost and robustness for this problem. Figure 7 depicts the convergence curves of BSAISA and BSA for the three-bar truss design problem, where the value of F(x) on the vertical axis equals 263.895843. As shown in Figure 7, BSA achieves the global optimum at about 700 iterations, while BSAISA only reaches the global optimum at about 400 iterations. It can be concluded that the convergence speed of BSAISA is faster than that of BSA for this problem.
Figure 7

Convergence curves of BSAISA and BSA for the three-bar truss design problem.

4.3.2. Pressure Vessel Design Problem (PVP)

The pressure vessel design problem has a nonlinear objective function with three linear and one nonlinear inequality constraints and two discrete and two continuous design variables. The values of the two discrete variables (x1, x2) should be the integer multiples of 0.0625. The best feasible solution is obtained by BSAISA at x = (0.8750, 0.4375, 42.0984, 176.6366) with the objective function value f(x) = 6059.7143 using 31,960 FEs. For this problem, BSAISA is compared with nine algorithms: BSA, BSA-SAε [62], DELC, POS-DE, genetic algorithms based on dominance tournament selection (GA-DT) [73], modified differential evolution (MDE) [74], coevolutionary particle swarm optimization (CPSO) [75], hybrid particle swarm optimization (HPSO) [76], and artificial bee colony algorithm (ABC) [77]. The comparison of the best solutions obtained by BSAISA and other reported algorithms is presented in Table 10. The statistical results of various algorithms are listed in Table 11.
Table 10

Comparison of best solutions for the pressure vessel design problem.

MethodGA-DTMDECPSOHPSODELCABCBSA-SAεBSABSAISA
X 1 0.81250.81250.81250.81250.81250.81250.81250.81250.8125
X 2 0.43750.43750.43750.43750.43750.43750.43750.43750.4375
X 3 42.097442.098442.091342.098442.098442.098442.098442.098442.0984
X 4 176.6540176.6360176.7465176.6366176.6366176.6366176.6366176.6366176.6366
g 1(X)−2.01E − 030−1.37E − 06NANA0−9.5E − 10−3.69E − 080
g 2(X)−3.58E − 02−0.035881−3.59E − 04NANA−0.035881−3.59E − 2−0.035881−0.035881
g 3(X)−24.7593−0.0000−118.7687NANA−0.000226−1.2E − 4−0.0954460
g 4(X)−63.3460−63.3639−63.2535NANA−63.363−63.363−63.2842−63.3634
f(X)6059.9463 6059.7017 6061.07776059.71436059.71436059.71436059.71436059.71506059.7143
Table 11

Comparison of statistical results for the pressure vessel design problem.

MethodWorstMeanBestStdFEs
GA-DT6469.32206177.25336059.9463130.929780,000
MDE6059.70176059.7017 6059.7017 1.0E − 1224,000
CPSO6363.80416147.13326061.077786.4530,000
HPSO6288.67706099.93236059.714386.2081,000
DELC6059.71436059.71436059.71432.1E − 1130,000
PSO-DE6059.71436059.71436059.71431.0E − 1042,100
ABCNA6245.30816059.71472.05E + 0230,000
BSA-SAε6116.78046074.36826059.71431.71E + 0180,000
BSA6771.59696221.28616059.71502.03E + 0260,000
BSAISA7198.00546418.19356059.71433.04E + 02 16,320
As shown Table 10, the obtained solution sets of all algorithms satisfy the constraints for this problem. BSAISA, BSA-SAε, ABC, DELC, and HPSO find the same considerable good objective function value 6059.7143, which is slightly worse than MDE's function value 6059.7143. It is worth mentioning that MBA's best solution was obtained at x = (0.7802, 0.3856, 40.4292, 198.4964) with f(x) = 5889.3216 and the corresponding constraint values equal to g(x) = (0, 0, −86.3645, −41.5035) in [78]. Though MBA finds a far better function value than that of MDE, its obtained variables (i.e., 0.7802 and 0.3856) are not integer multiples of 0.0625. So they are not listed in Table 10 to ensure a fair comparison. From Table 11, except for MDE with the function value of 6059.7016, BSAISA offers better function value results compared to GA-DT, CPSO, ABC, and BSA. Besides that, BSAISA is far superior to other algorithms in terms of FEs. Unfortunately, the obtained Std value of BSAISA is relatively poor compared with others for this problem. Figure 8 describes the convergence curves of BSAISA and BSA for the pressure vessel design problem, where the value of F(x) on the vertical axis equals 6059.7143. As shown in Figure 8, BSAISA is able to find the global optimum at about 800 iterations and obtains a far more accurate function value than that of BSA. Moreover, the convergence speed of BSAISA is much faster than that of BSA.
Figure 8

Convergence curves of BSAISA and BSA for the pressure vessel design problem.

4.3.3. Tension Compression Spring Design Problem (TCSP)

This design optimization problem has three continuous variables and four nonlinear inequality constraints. The best feasible solution is obtained by BSAISA at x = (0.051687, 0.356669, 11.291824) with f(x) = 0.012665 using 9440 FEs. This problem has been solved by other methods as follows: GA-DT, MDE, CPSO, HPSO, DEDS, HEAA, DELC, POS-DE, ABC, MBA, BSA-SAε, and Social Spider Optimization (SSOC) [79]. The comparison of the best solutions obtained from various algorithms is presented in Table 12. Their statistical results are listed in Table 13.
Table 12

Comparison of best solutions for the tension compression spring design problem.

Method X 1 X 2 X 3 g 1(X) g 2(X) g 3(X) g 4(X) f(X)
GA-DT0.0519890.36396510.890522−1.3E − 05−2.1E − 05−4.061338−0.7226980.012681
MDE0.0516880.35669211.290483−0.000000−0.000000−4.053734−0.727747 0.012665
CPSO0.0517280.35764411.244543−8.45E − 04−1.26E − 05−4.051300−0.7270900.012675
HPSO0.0517060.35712611.265083NANANANA 0.012665
DEDS0.0516890.35671811.288965NANANANA 0.012665
HEAA0.0516900.35672911.288294NANANANA 0.012665
DELC0.0516890.35671811.288966NANANANA 0.012665
ABC0.0517490.35817911.203763−0.000000−0.000000−4.056663−0.726713 0.012665
MBA0.0516560.3559411.34466500−4.052248−0.728268 0.012665
SSOC0.0516890.35671811.288965NANANANA 0.012665
BSA-SAε0.0519890.35672711.288425−7.70E − 09−3.30E − 09−4.054−0.728 0.012665
BSA0.0516940.35684511.281488−1.05E − 07−1.77 − 08−4.054037−0.727640 0.012665
BSAISA0.0516870.35666911.291824−6.38E − 10−1.53E − 09−4.053689−0.727763 0.012665
Table 13

Comparison of statistical results for the tension compression spring design problem.

MethodWorstMeanBestStdFEs
GA-DT0.0129730.0127420.0126815.90E − 0580,000
MDE0.0126740.012666 0.012665 2.0E − 624,000
CPSO0.0129240.0127300.0126755.20E − 0523,000
HPSO0.0127190.012707 0.012665 1.58E − 0581,000
DEDS0.0127380.012669 0.012665 1.25E − 0524,000
HEAA0.0126650.012665 0.012665 1.4E − 0924,000
DELC0.0126660.012665 0.012665 1.3E − 0720,000
PSO-DE0.0126650.012665 0.012665 1.2E − 0824,950
ABCNA0.012709 0.012665 0.01281330,000
MBA0.0129000.012713 0.012665 6.30E − 05 7650
SSOC0.0128680.012765 0.012665 9.29E − 0525,000
BSA-SAε0.0126660.012665 0.012665 1.62E − 0780,000
BSA0.0126690.012666 0.012665 7.24E − 0743,220
BSAISA0.0126680.012666 0.012665 4.90E − 079440
From Tables 12 and 13, the vast majority of algorithms can find the best function value 0.012665 for this problem, while GA-DT and CPSO fail to find it. With regard to the computational cost (FEs), BSAISA only requires 9440 FEs when it reaches the global optimum, which is superior to all other algorithms except MBA with 7650 FEs. However, the Worst and Mean and Std values of BSAISA are better than those of MBA. Consequently, for this problem, it can be concluded that BSA has the obvious superiority in terms of FEs over all other algorithms except MBA. Moreover, BSAISA has a stronger robustness when compared with MBA alone. Figure 9 depicts the convergence curves of BSAISA and BSA for the tension compression spring design problem, where the value of F(x) on the vertical axis equals 0.012665. From Figure 9 it can be observed that both BSAISA and BSA fall into a local optimum in the early iterations but they are able to successfully escape from the local optimum. However, the convergence speed of BSAISA is obviously faster than that of BSA.
Figure 9

Convergence curves of BSAISA and BSA for the tension compression spring design problem.

4.3.4. Welded Beam Design Problem (WBP)

The welded beam problem is a minimum cost problem with four continuous design variables and subject to two linear and five nonlinear inequality constraints. The best feasible solution is obtained by BSAISA at x = (0.205730, 3.470489, 9.036624, 0.205730) with the objective function value f(x) = 1.724852 using 29,000 FEs. For this problem, BSAISA is compared with many well-known algorithms as follows: GA-DT, MDE, CPSO, HPSO, DELC, POS-DE, ABC, MBA, BSA, BSA-SAε, and SSOC. The best solutions obtained from BSAISA and other well-known algorithms are listed in Table 14. The comparison of their statistical results is presented in Table 15.
Table 14

Comparison of best solutions for the welded beam design problem.

MethodGA-DTMDECPSOHPSOABCMBABSA-SAεBSABSAISA
X 1(h)0.2059860.2057300.2023690.2057300.2057300.2057290.2057300.2057300.205730
X 2(l)3.4713283.4704893.5442143.4704893.4704893.4704933.4704893.4704893.470489
X 3(t)9.0202249.0366249.048219.0366249.0366249.0366269.0366249.0366249.036624
X 4(b)0.2064800.2057300.2057230.2057300.2057300.2057290.2057300.2057300.205730
g 1(X)−0.074092−0.000335−12.839796NA0.000000−0.001614−1.55E − 10−5.32E − 070
g 2(X)−0.266227−0.000753−1.247467NA−0.000002−0.016911−4.30E − 09−9.02E − 060
g 3(X)−4.95E − 04−0.000000−1.49E − 03NA0.000000−2.40E − 07−1.55E − 15−7.86E − 12−5.55E − 17
g 4(X)−3.430044−3.432984−3.429347NA−3.432984−3.432982−3.4330−3.432984−3.432984
g 5(X)−0.080986−0.080730−0.079381NA−0.080730−0.080729−8.07E − 02−0.080730−0.080730
g 6(X)−0.235514−0.235540−0.235536NA−0.235540−0.235540−0.2355−0.235540−0.235540
g 7(X)−58.666440−0.000882−11.681355NA0.000000−0.001464−1.85E − 10−1.13E − 07−5.46E − 12
f(X)1.728226 1.724852 1.728024 1.724852 1.724852 1.724853 1.724852 1.724852 1.724852
Table 15

Comparison of statistical results for the welded beam design problem.

MethodWorstMeanBestStdFEs
GA-DT1.9934081.7926541.7282267.47E − 0280,000
MDE1.7248541.724853 1.724852 NA24,000
CPSO1.7821431.7488311.7280241.29E − 0224,000
HPSO1.8142951.749040 1.724852 4.00E − 0281,000
DELC1.7248521.724852 1.724852 4.1E − 13 20,000
PSO-DE1.7248521.724852 1.724852 6.7E − 1666,600
ABCNA1.741913 1.724852 3.1E − 0230,000
MBA1.7248531.7248531.7248536.94E − 1947,340
SSOC1.7993321.746462 1.724852 2.57E − 225,000
BSA-SAε1.7248521.724852 1.724852 8.11E − 1080,000
BSA1.7248541.724852 1.724852 2.35E − 0745,480
BSAISA1.7248541.724852 1.724852 2.96E − 0729,000
From Tables 14 and 15, except that the constraint value of PSO is not available, the obtained solution sets of all algorithms satisfy the constraints for the problem. Most of algorithms including BSAISA, BSA, BSA-SAε, MDE, HPSO, DELC, POS-DE, ABC, and SSOC are able to find the best function value 1.724852, while GA-DT and CPSO and MBA fail to find it. It should be admitted that DELC is superior to all other algorithms in terms of FEs and robustness for this problem. On the other hand, except for DELC, MDE, and SSOC with FEs of 2000, 2400, and 2500, respectively, BSAISA requires fewer FEs than the remaining algorithms (excluding algorithms that do not reach the best solution). When considering the comparison of the Std values for this problem, MBA exhibits its powerful robustness and BSAISA performs better than most algorithms except MBA, DELC, PSO-DE, BSA, and BSA-SAε. It is worth mentioning that from [74] the Worst, Mean, Best, and Std value of MDE are given as 1.724854, 1.724853, 1.724852, and 1.0E − 15, respectively. However, the corresponding values of DELC equal 1.724852, 1.724852, 1.724852, and 4.1E − 13, respectively, where its Worst and Mean values are smaller than those of MDE while its Std is bigger than those of MDE. So we consider that the Std of MDE is probably an error data for this problem, and we replace it with NA in Table 15. Figure 10 depicts the convergence curves of BSAISA and BSA for the welded beam design problem, where the value of F(x) on the vertical axis equals 1.724852. Figure 10 shows the convergence speed of BSAISA is faster than that of BSA remarkably.
Figure 10

Convergence curves of BSAISA and BSA for the welded beam design problem.

4.3.5. Speed Reducer Design Problem (SRP)

This speed reducer design problem has eleven constraints and six continuous design variables (x1, x2, x4, x5, x6, x7) and one integer variable (x3). The best solution obtained from BSAISA is x = (3.500000, 0.7000000, 17, 7.300000, 7.715320, 3.350215, 5.286654) with f(x) = 2994.471066 using 15,860 FEs. The comparison of the best solutions obtained by BSAISA and other well-known algorithms is given in Table 16. The statistical results of BSAISA, BSA, MDE, DEDS, HEAA, DELC, POS-DE, ABC, MBA, and SSOC are listed in Table 17.
Table 16

Comparison of best solutions for the speed reducer design problem.

MethodMDEDEDSDELCHEAAPOS-DEMBABSABSAISA
X 1 3.5000103.5000003.5000003.5000233.5000003.5000003.5000003.500000
X 2 0.7000000.7000000.7000000.7000000.7000000.7000000.7000000.700000
X 3 17171717.00001317.00000017.0000001717
X 4 7.3001567.3000007.3000007.3004287.3000007.3000337.3000007.300000
X 5 7.8000277.7153207.7153207.7153777.8000007.7157727.7153207.715320
X 6 3.3502213.3502153.3502153.3502313.3502153.3502183.3502153.350215
X 7 5.2866855.2866545.2866545.2866645.2866835.2866545.2866545.286654
f(X)2996.356689 2994.471066 2994.471066 2994.4991072996.3481672994.482453 2994.471066 2994.471066
Table 17

Comparison of statistical results for the speed reducer design problem.

MethodWorstMeanBestStdFEs
MDE2996.3901372996.3672202996.3566898.2E − 0324,000
DEDS2994.4710662994.471066 2994.471066 3.58E − 1230,000
HEAA2994.7523112994.6133682994.4991077.0E − 0240,000
DELC2994.4710662994.471066 2994.471066 1.9E − 1230,000
PSO-DE2996.3482042996.3481742996.3481676.4E − 0654,350
ABCNA2997.0584122997.058412030,000
MBA2999.6524442996.7690192994.4824531.566300
SSOC2996.1132982996.1132982996.1132981.34E − 1225,000
BSA2994.4710662994.471066 2994.471066 9.87E − 1125,640
BSAISA2994.4710952994.471067 2994.471066 5.40E − 06 15,860
As shown in Tables 16 and 17, the obtained solution sets of all algorithms satisfy the constraints for this problem. BSAISA, BSA, DEDS, and DELC are able to find the best function value 2994.471066 while the others do not. Among the four algorithms, DEDS, DELC, and BSA require 30000, 30000, and 25640 FEs, respectively. However, BSAISA requires only 15,860 FEs when it reaches the same best function value. MBA fails to find the best known function value; thus BSAISA is better than MBA in this problem, even though MBA has lower FEs. As for the comparison of the Std, among the four algorithms that achieve the best known function value, BSAISA is worse than the others. However, one thing that should be mentioned is that the main purpose of the experiment is to compare the convergence speed between BSAISA and other algorithms. From this point of view, it can be concluded that BSAISA has a better performance than other algorithms in terms of convergence speed. Figure 11 depicts the convergence curves of BSAISA and BSA for the speed reducer design problem, where the value of F(x) on the vertical axis equals 2994.471066. Figure 11 shows that the convergence speed of BSAISA is faster than that of BSA.
Figure 11

Convergence curves of BSAISA and BSA for the speed reducer design problem.

4.4. Comparisons Using Sign Test

Sign Test [80] is one of the most popular statistical methods used to determine whether two algorithms are significantly different. Recently, Miao et al. [81] utilized Sign Test method to analyze the performances between their proposed modified algorithm and the original one. In this paper, the two-tailed Sign Test with a significance level 0.05 is adopted to test the significant differences between the results obtained by different algorithms, and the test results are given in Table 18. The values of Best and FEs are two most important criterions for the evaluations of algorithms in our paper; they therefore should be chosen as the objectives of the Sign Test. The signs “+,” “≈,” and “−” represent, respectively, the fact that our BSAISA performs significantly better than, almost the same as, or significantly worse than the algorithm it is compared to. The null hypothesis herein is that the performances between BSAISA and one of the others are not significantly differential.
Table 18

Comparisons between BSAISA and other algorithms in Sign Tests.

BSAISA-methods+Total p value
SR1111130.006
FSA1201130.003
CDE805130.581
AMA1300130.000
MABC1021130.012
RPGA1100110.001
BSA-SAε841130.039

Note. The columns of “+,” “≈,” and “−” indicate the number of functions where BSAISA performs significantly better than, almost the same as, or significantly worse than the compared algorithm, respectively. “p value” denotes the probability value supporting the null hypothesis.

As shown in Table 18, the p values of supporting the null hypothesis of Sign Test for six pairs of algorithms (BSAISA-SR, BSAISA-FSA, BSAISA-AMA, BSAISA-MABC, BSAISA-RPGA, and BSAISA-BSA-SAε) are 0.006, 0.003, 0.000, 0.012, 0.001, and 0.039, respectively, and thereby we can reject the null hypothesis. This illustrates that the optimization performance of the proposed BSAISA is significantly better than those of the six algorithms. The p value of BSAISA-CDE is equal to 0.581, which shows that we cannot reject the null hypothesis. However, according to the related sign values (“+,” “≈,” and “−”) from Table 18, BSAISA is slightly worse than CDE on 5 problems but wins on another 8 problems, which illustrates that the proposed BSAISA has a relatively excellent competitiveness compared with the CDE. Generally, the statistical p values and sign values validate that BSAISA has the superiority compared to the other well-known algorithms on the constrained optimization problems. On the one hand, all experimental results suggest that the proposed method improves the convergence speed of BSA. On the other hand, the overall comparative results of BSAISA and other well-known algorithms demonstrate that BSAISA is more effective and competitive for constrained and engineering optimization problems in terms of convergence speed.

5. Conclusions and Future Work

In this paper, we proposed a modified version of BSA inspired by the Metropolis criterion in SA (BSAISA). The Metropolis criterion may probabilistically accept a higher energy state and the acceptance probability can decrease as the temperature decreases, which motivated us to redesign the amplitude control factor F so it can adaptively decrease as the number of iterations increases. The design principle and numerical analysis of the redesigned F indicate that the change in F could accelerate the convergence speed of the algorithm by improving the local exploitation capability. Furthermore, the redesigned F does not introduce extra parameters. We successfully implemented BSAISA to solve some constrained optimization and engineering design problems. The experimental results demonstrated that BSAISA has a faster convergence speed than BSA and it can efficiently balance the capacity for global exploration and local exploitation. The comparisons of the results obtained by BSAISA and other well-known algorithms demonstrated that BSAISA is more effective and competitive for constrained and engineering optimization problems in terms of convergence speed. This paper suggests that the proposed BSAISA has a superiority in terms of convergence speed or computational cost. The downside of the proposed algorithm is, of course, that its robustness does not show enough superiority. So our future work is to further research into the robustness of BSAISA on the basis of current research. Niche technique is able to effectively maintain population diversity of evolutionary algorithms [82, 83]. How to combine BSAISA with niche technology to improve robustness of the algorithm may deserve to be studied in the future.
  9 in total

1.  A comparison of global search algorithms for continuous black box optimization.

Authors:  Petr Pošík; Waltraud Huyer; László Pál
Journal:  Evol Comput       Date:  2012-08-03       Impact factor: 3.277

2.  Covariance matrix adaptation for multi-objective optimization.

Authors:  Christian Igel; Nikolaus Hansen; Stefan Roth
Journal:  Evol Comput       Date:  2007       Impact factor: 3.277

3.  Optimization by simulated annealing.

Authors:  S Kirkpatrick; C D Gelatt; M P Vecchi
Journal:  Science       Date:  1983-05-13       Impact factor: 47.728

4.  Evolutionary Cost-Sensitive Extreme Learning Machine.

Authors:  Lei Zhang; David Zhang
Journal:  IEEE Trans Neural Netw Learn Syst       Date:  2016-10-11       Impact factor: 10.451

5.  Backtracking search algorithm in CVRP models for efficient solid waste collection and route optimization.

Authors:  Mahmuda Akhtar; M A Hannan; R A Begum; Hassan Basri; Edgar Scavino
Journal:  Waste Manag       Date:  2017-01-30       Impact factor: 7.145

6.  Modified differential evolution algorithm with onlooker bee operator for mixed discrete-continuous optimization.

Authors:  Yongfei Miao; Qinghua Su; Zhongbo Hu; Xuewen Xia
Journal:  Springerplus       Date:  2016-11-03

7.  Ant system: optimization by a colony of cooperating agents.

Authors:  M Dorigo; V Maniezzo; A Colorni
Journal:  IEEE Trans Syst Man Cybern B Cybern       Date:  1996

8.  Color image quantization algorithm based on self-adaptive differential evolution.

Authors:  Qinghua Su; Zhongbo Hu
Journal:  Comput Intell Neurosci       Date:  2013-07-15

9.  Multiobjective Image Color Quantization Algorithm Based on Self-Adaptive Hybrid Differential Evolution.

Authors:  Zhongbo Hu; Qinghua Su; Xuewen Xia
Journal:  Comput Intell Neurosci       Date:  2016-09-25
  9 in total
  1 in total

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

Authors:  Boxin Guan; Yuhai Zhao; Yuan Li
Journal:  Entropy (Basel)       Date:  2019-08-06       Impact factor: 2.524

  1 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.