Description Usage Arguments Value Examples
View source: R/pareto-dominance.R
Check whether solution a
dominates solution b
1 | pareto_dominates(a, b, minimize = TRUE)
|
a |
Numeric vector with values of objective functions for solution |
b |
Numeric vector with values of objective functions for solution |
minimize |
If objective functions should be minimized |
Logical value
1 2 3 | solutionA <- c(1,2,2)
solutionB <- c(5,2,2)
pareto_dominates(solutionA, solutionB)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.