pub fn minimum_cut<N, E, Ix>(
graph: &Graph<N, E, Ix>,
) -> Result<(f64, Vec<bool>), GraphError>Expand description
Find minimum s-t cut using max flow.
The min-cut value equals the max flow (max-flow min-cut theorem). Returns the cut value and the partition of nodes.