fastNonDominatedSorting {nsga2R} | R Documentation |
A fast approach to sort non-dominated solutions into different nondomination levels.
fastNonDominatedSorting(inputData)
inputData |
Matrix of solutions with objective function values |
Return a list of indices for all fronts.
Ching-Shih (Vince) Tsou cstsou@mail.ntcb.edu.tw
Deb, K., Pratap, A., Agarwal, S., and Meyarivan, T. (2002), " A fast and elitist multiobjective genetic algorithm: NSGA-II", IEEE Transactions on Evolutionary Computation, 6(2), 182-197.
set.seed(1234)
# randomly generate a polulation of fifty chromosomes, each with two objectives
y <- matrix(runif(100, -5, 5), nrow=50, ncol=2)
rankIdxList <- fastNonDominatedSorting(y)
rankIdxList