find_nondominated_points: Find non-dominated points

View source: R/find_nondominated_points.R

find_nondominated_pointsR Documentation

Find non-dominated points

Description

Non-dominated point finding for minimization problems

Usage

find_nondominated_points(Y)

Arguments

Y

row matrix of points in the space of objectives.

Details

Non-dominated point finding, based on portions of function fastNonDominatedSorting from package NSGA2R (https://CRAN.R-project.org/package=nsga2R)

Value

logical vector of length nrow(Y) indicating the nondominated points as TRUE.

Examples

Y  <- matrix(runif(200), ncol = 2)
nd <- find_nondominated_points(Y)
plot(Y[, 1], Y[, 2], type = "p", pch = 20, las = 1)
points(Y[nd, 1], Y[nd, 2], type = "p", pch = 16, col = 2, cex = 1.5)


fcampelo/MOEADr documentation built on Jan. 9, 2023, 6 a.m.