pub fn edmonds_karp_dense<N, C, IC>(
    vertices: &[N],
    source: &N,
    sink: &N,
    caps: IC
) -> EKFlows<N, C>
where N: Eq + Hash + Copy, C: Zero + Bounded + Signed + Ord + Copy, IC: IntoIterator<Item = Edge<N, C>>,
Expand description

Helper for the edmonds_karp function using an adjacency matrix for dense graphs.