diff options
author | Ta180m | 2020-07-04 15:36:48 -0500 |
---|---|---|
committer | Ta180m | 2020-07-04 15:36:48 -0500 |
commit | 345ad1ac38ff571849b4b5830bcfb1a481af1d2c (patch) | |
tree | d0781451a1fa22683488cc1939903fe3ec57ca31 | |
parent | 4aefc2aaeb2e35b3c141a6c898cbd673f0420296 (diff) |
Update max_flow.cpp
-rw-r--r-- | Graph/max_flow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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<int V, class T = ll> -class max_flow { +template<int V, class T = ll> class max_flow { static const T INF = numeric_limits<T>::max(); struct edge { int t, rev; |