Skip to main content
. 2018 Sep 7;20(9):684. doi: 10.3390/e20090684
Algorithm 2 Binary tournament selection.
Require:P {Population}
  •  1:

    I Random selection from P

  •  2:

    J Random selection from P

  •  3:

    ifI is better than J according to the rank-crowding function in population P then

  •  4:

    return I

  •  5:

    else

  •  6:

    return J

  •  7:

    end if