Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a3f6b0 + 659d23b commit 572eae6Copy full SHA for 572eae6
src/graph/edmonds_karp.md
@@ -66,7 +66,7 @@ We can create a **residual network** from all these edges, which is just a netwo
66
The Ford-Fulkerson method works as follows.
67
First, we set the flow of each edge to zero.
68
Then we look for an **augmenting path** from $s$ to $t$.
69
-An augmenting path is a simple path in the residual graph, i.e. along the edges whose residual capacity is positive.
+An augmenting path is a simple path in the residual graph where residual capacity is positive for all the edges along that path.
70
If such a path is found, then we can increase the flow along these edges.
71
We keep on searching for augmenting paths and increasing the flow.
72
Once an augmenting path doesn't exist anymore, the flow is maximal.
0 commit comments