Skip to content

Commit fe9c3e6

Browse files
authored
Update maxflow2.cpp
1 parent c6d3e7b commit fe9c3e6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

maxflow2.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class max_flow {
4242

4343
T augment(int n, T amt, int t) {
4444
if (n == t) return amt;
45-
int sz = adj[n].size
4645
for (; ptr[n] < adj[n].size(); ptr[n]++) {
4746
edge& e = adj[n][ptr[n]];
4847
if (dist[e.t] == dist[n] + 1 && e.cap != e.f) {

0 commit comments

Comments
 (0)