Skip to main content
. 2023 Jul 1;25(7):1015. doi: 10.3390/e25071015
Algorithm 1 The framework of the algorithm for MaOEA/DS
  • Require: 

    N (population size)

  • Ensure: 

    O (final population)

  • 1:

    O = Initialization (N)

  • 2:

    While the stopping criterion is not met do

  • 3:

       O = ChooseSolutions (O)

  • 4:

       O = Reproduction (O)

  • 5:

       R=OO

  • 6:

       O = DualSelection (R,N)

  • 7:

    Endwhile

  • 8:

    return O;