Description Usage Arguments Value Examples
Given a graph with at least one minimum cost arborescence,
the maPessimistic
function builds the pessimistic
game.
1 | maPessimistic(nodes, arcs)
|
nodes |
vector containing the nodes of the graph, identified by a number that goes from 1 to the order of the graph. |
arcs |
matrix with the list of arcs of the graph. Each row represents one arc. The first two columns contain the two endpoints of each arc and the third column contains their weights. |
maPessimistic
returns a vector with the
characteristic function of the pessimitic game.
1 2 3 4 5 6 | # Graph
nodes <- 1:4
arcs <- matrix(c(1,2,7, 1,3,6, 1,4,4, 2,3,8, 2,4,6, 3,2,6,
3,4,5, 4,2,5, 4,3,7), ncol = 3, byrow = TRUE)
# Pessimistic game
maPessimistic(nodes, arcs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.