Description Usage Arguments Value Examples
This function compares assignments.
| 1 | compareAssignments(problem, necessary = TRUE)
 | 
| problem | Problem for which assignments will be compared. | 
| necessary | Whether necessary or possible assignments. | 
n x n logical matrix, where n is a number of
alternatives. Cell [i, j] is TRUE if a_i is assigned to
class at least as good as class of a_j for all compatible value
functions.
| 1 2 3 4 5 | perf <- matrix(c(5, 2, 1, 7, 0.5, 0.9, 0.4, 0.4), ncol = 2)
problem <- buildProblem(perf, 3, FALSE, c('g', 'g'), c(0, 0))
problem <- addAssignmentsLB(problem, c(1, 2), c(2, 3))
resultOfComparison <- compareAssignments(problem)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.