In 2014, Seyedali Mirjalili, Seyed Mohammad Mirjalili, and Andrew Lewis published a deceptively simple idea: watch how grey wolves hunt and turn it into a general-purpose optimizer.
Grey wolves (Canis lupus) live in packs with a rigid rank ladder. At the top sits the alpha — the dominant pair that makes all decisions. Below them are the beta wolves, advisors who help govern the pack. Next come the delta wolves, scouts and sentinels. At the bottom are the omega wolves, the followers. When the pack hunts, the alpha, beta and delta wolves surround the prey, and the whole pack adjusts its position around those three leaders.
The Grey Wolf Optimizer (GWO) keeps only that skeleton. Each "wolf" in the algorithm is a candidate solution to your problem. The three best solutions found so far play alpha, beta and delta. Every other wolf repositions itself by taking a weighted average of the positions guided by those three leaders — and as iterations progress, the encirclement radius shrinks, focusing the search until the pack converges on the prey: the optimum.
The algorithm belongs to the broad family of swarm intelligence and metaheuristics — algorithms that explore a search space stochastically, without gradients, and can find good (though not always provably best) solutions to problems where classical methods struggle.
Comments
Loading comments...