graph.mincut() was renamed to min_cut() to create a more
consistent API.
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
NULL(the default) then thecapacityedge attribute is used.- value.only
Logical scalar, if
TRUEonly the minimum cut value is returned, ifFALSEthe edges in the cut and a the two (or more) partitions are also returned.
Related documentation in the C library
mincut(), mincut_value(), st_mincut(), st_mincut_value(), edges(), ecount(), vcount(), get_eids()
