Loading...
Loading...
Loading Curriculum...
Loading Subject...
Loading Topic...
Loading Lesson...
Loading Lab...
Determine the maximum volume of "data" or "fluid" that can travel from source (S) to sink (T). Edmonds-Karp uses BFS to find augmenting paths in the Residual Graph until no capacity remains.
Every edge has a residual capacity (limit - current flow). We can only send flow through edges where residual capacity > 0.
An augmenting path is a simple path from S to T in the residual graph. We "augment" the flow by the bottleneck capacity of this path.