graph.mincut {igraph} | R Documentation |
Minimum cut in a graph
Description
graph.mincut()
was renamed to min_cut()
to create a more
consistent API.
Usage
graph.mincut(
graph,
source = NULL,
target = NULL,
capacity = NULL,
value.only = TRUE
)
Arguments
graph |
The input graph. |
source |
The id of the source vertex. |
target |
The id of the target vertex (sometimes also called sink). |
capacity |
Vector giving the capacity of the edges. If this is
|
value.only |
Logical scalar, if |
[Package igraph version 2.0.3 Index]