diff options
Diffstat (limited to 'content/graph/pushRelabel.cpp')
| -rw-r--r-- | content/graph/pushRelabel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/graph/pushRelabel.cpp b/content/graph/pushRelabel.cpp index 73a9eae..ec36026 100644 --- a/content/graph/pushRelabel.cpp +++ b/content/graph/pushRelabel.cpp @@ -29,7 +29,7 @@ ll maxFlow(int s, int t) { cur.assign(n, 0); H.assign(n, 0); H[s] = n; - ec[t] = 1;//never set t to active... + ec[t] = 1; //never set t to active... vector<int> co(2*n); co[0] = n - 1; for (Edge& e : adj[s]) addFlow(e, e.c); |
