|
Algorithm 2 PC strategy |
-
Require:
(temporary population), N (population size)
-
Ensure:
O (final population)
-
1:
< N
-
2:
each solution in
-
3:
Randomly select an individual to determine its neighbors by Equation (5)
-
4:
Calculate the crowding degree value of individual by Equation (6)
-
5:
-
6:
Put the individual o=arg max() to O
-
7:
-
8:
Update and remove o from
-
9:
-
10:
return O
|