Skip to main content
. 2020 Aug 25;142:102060. doi: 10.1016/j.tre.2020.102060
Algorithm 1: Proposed approach for generating new offspring
Notations:
NOR Number of rows in a solution (nor=1,2,,NOR).
EFBSnor The north element on the first random binary string.
ESBSnor The north element on the second random binary string.
FSSnor The north row of the first selected solution.
SSSnor The north row of the second selected solution.
FOFSnor The north row of the first offspring.
SOFSnor The north row of the second offspring.
1. Generate two random binary strings;
2. Fornor=1toNORdo
3.  IfEFBSnor=1do
4.   FOFSnorFSSnor;
5.  Else
6.   FOFSnorSSSnor;
7.  End if
8.  IfESBSnor=1do
9.   SOFSnorSSSnor;
10.  Else
11.   SOFSnorFSSnor;
12.  End if
13. End for
14. Update the archive set with the newly generated offspring;
15. Eliminate the dominated solutions from the archive set;
Output: An updated archive set.