An Enhanced Grey Wolf Optimizer with Elite Inheritance and Balance Search Mechanisms

Jianhua Jiang,Ziying Zhao,Weihua Li,Keqin Li
2024-04-09
Abstract:The Grey Wolf Optimizer (GWO) is recognized as a novel meta-heuristic algorithm inspired by the social leadership hierarchy and hunting mechanism of grey wolves. It is well-known for its simple parameter setting, fast convergence speed, and strong optimization capability. In the original GWO, there are two significant design flaws in its fundamental optimization mechanisms. Problem (1): the algorithm fails to inherit from elite positions from the last iteration when generating the next positions of the wolf population, potentially leading to suboptimal solutions. Problem (2): the positions of the population are updated based on the central position of the three leading wolves (alpha, beta, delta), without a balanced mechanism between local and global search. To tackle these problems, an enhanced Grey Wolf Optimizer with Elite Inheritance Mechanism and Balance Search Mechanism, named as EBGWO, is proposed to improve the effectiveness of the position updating and the quality of the convergence solutions. The IEEE CEC 2014 benchmark functions suite and a series of simulation tests are employed to evaluate the performance of the proposed algorithm. The simulation tests involve a comparative study between EBGWO, three GWO variants, GWO and two well-known meta-heuristic algorithms. The experimental results demonstrate that the proposed EBGWO algorithm outperforms other meta-heuristic algorithms in both accuracy and convergence speed. Three engineering optimization problems are adopted to prove its capability in processing real-world problems. The results indicate that the proposed EBGWO outperforms several popular algorithms.
Neural and Evolutionary Computing,Artificial Intelligence
What problem does this paper attempt to address?
The paper aims to address two main issues present in the Grey Wolf Optimizer (GWO): 1. **Lack of Elite Position Inheritance Mechanism**: The original GWO algorithm fails to effectively inherit the well-performing (elite) position information from the previous generation during population updates, which may lead to suboptimal solutions. 2. **Imbalance Between Exploration and Exploitation**: The GWO algorithm's method of updating population positions tends to perform local searches based on the central positions of the three leading wolves (alpha, beta, delta), lacking an effective balance mechanism to consider both global and local searches, making it prone to getting trapped in local optima. To overcome these issues, the researchers proposed an Enhanced Balance Grey Wolf Optimizer (EBGWO), which introduces two key mechanisms: - **Elite Inheritance Mechanism**: By establishing an "elite archive" to store the top 3 best-performing individuals in each generation, and utilizing these individuals to guide the population's position update process in the next generation, thereby improving the quality of the solutions. - **Balanced Search Mechanism**: By introducing a new operator (Search Tendency, ST) to dynamically adjust the search strategy. When the random number is less than the ST value, a new position update method is used to promote global exploration; otherwise, the original GWO position update mechanism is used to enhance local exploitation. This method helps the algorithm achieve a better balance between exploration and exploitation, thus avoiding getting trapped in local optima. The proposed EBGWO algorithm was evaluated using the IEEE CEC 2014 benchmark function suite and a series of simulation tests, and compared with several other GWO variants and other well-known metaheuristic algorithms. The experimental results show that the EBGWO algorithm outperforms other algorithms in terms of accuracy and convergence speed, and also performs well in handling real engineering optimization problems.