diff --git a/Graph/max_flow.cpp b/Graph/max_flow.cpp index a675659..a800d2e 100644 --- a/Graph/max_flow.cpp +++ b/Graph/max_flow.cpp @@ -5,8 +5,7 @@ - O(min(V^(2/3), E^(1/2)) E) for unit capacity graphs */ -template -class max_flow { +template class max_flow { static const T INF = numeric_limits::max(); struct edge { int t, rev;