|
Algorithm 10 GWO |
Input: the parameters M, N,
Begin
S1: initialize M individuals randomly, iterative times t = 1;
S2: compute, rank the solutions and find the current top three best wolves:, and; if it satisfies (t > N or precision), then go to step S4; otherwise, go to step S3;
S3: update the solution of each individual via Equation (42), update coefficients a, A and C, iterative times t = t + 1; go to step S2;
S4: output the optimized results.
End
|