Graph Theory37 sections · 1633 units
Open in Course

Ford-Fulkerson Method

Iterative augmentation fram...

The Ford-Fulkerson method is simple: start with zero flow, then repeatedly find augmenting paths and push flow through them until no path remains. Pseudocode:

1.1. Initialize all flows to 00.

2.2. While there exists an augmenting path in the residual graph:

  • Find the bottleneck capacity.
  • Push that much flow along the path.
  • Update the residual graph. The method guarantees you find the maximum flow. The question is: how do you find augmenting paths?