find_nondominated: Find nondominated solutions

Description Usage Arguments Value Examples

View source: R/pareto-dominance.R

Description

Find solutions which are not dominated by any other solution

Usage

1
find_nondominated(solutions, minimize = TRUE)

Arguments

solutions

List or matrix with objective functions values for solutions. In matrix each row contains values for one solution

minimize

If objective functions should be minimized

Value

Logical vector with the same length as number of solutions. Vector contains TRUE for solutions which are nondominated.

Examples

1
2
solutions <- list(c(1, 5, 5), c(8, 4, 8), c(3, 2, 2))
find_nondominated(solutions)

jiripetrlik/r-multiobjective-evolutionary-algorithms documentation built on April 27, 2020, 12:12 p.m.