Edmonds Karp algorithm and 0 1 capacities

445 views Asked by At

What is the Edmonds Karp (BFS) upper bound when the only available capacities are 0 and 1?

I don't understand the difference when the capacities are only 0 and 1, I know that Ford Fulkerson finds that flow value is 0 or 1, if the capacities are 0 and 1. Does this help me?

1

There are 1 answers

0
Saeed Amiri On

In Edmonds-karp algorithm in each run one of an edges will be saturated, so there is no difference between 0 1 or random capacity edges. means both running times are same, also algorithm works properly.