pareto_dominates: Check pareto dominance

Description Usage Arguments Value Examples

View source: R/pareto-dominance.R

Description

Check whether solution a dominates solution b

Usage

1
pareto_dominates(a, b, minimize = TRUE)

Arguments

a

Numeric vector with values of objective functions for solution a

b

Numeric vector with values of objective functions for solution b

minimize

If objective functions should be minimized

Value

Logical value

Examples

1
2
3
solutionA <- c(1,2,2)
solutionB <- c(5,2,2)
pareto_dominates(solutionA, solutionB)

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