From b2ee09573e373e66a3b74a662b725386c09f5282 Mon Sep 17 00:00:00 2001 From: subcrip Date: Sun, 19 May 2024 14:35:58 +0800 Subject: [PATCH] Update graph/examples/passive_flow_with_demands.cc Signed-off-by: subcrip --- graph/examples/passive_flow_with_demands.cc | 37 --------------------- 1 file changed, 37 deletions(-) diff --git a/graph/examples/passive_flow_with_demands.cc b/graph/examples/passive_flow_with_demands.cc index 8610c9e..6c91bae 100644 --- a/graph/examples/passive_flow_with_demands.cc +++ b/graph/examples/passive_flow_with_demands.cc @@ -1,16 +1,5 @@ // ... -#define SINGLE_TEST_CASE -// #define DUMP_TEST_CASE 7219 -// #define TOT_TEST_CASE 10000 - -void dump() {} - -void dump_ignore() {} - -void prep() { -} - struct dinic { // ... }; @@ -49,29 +38,3 @@ void solve() { cout << "YES\n"; copy(res.begin(), res.end(), oi(cout, "\n")); } - -int main() { -#if __cplusplus < 201703L || defined(_MSC_VER) && !defined(__clang__) - assert(false && "incompatible compiler variant detected."); -#endif - untie, cout.tie(NULL); - prep(); -#ifdef SINGLE_TEST_CASE - solve(); -#else - read(int, t); - for (int i = 0; i < t; ++i) { -#ifdef DUMP_TEST_CASE - if (t != (TOT_TEST_CASE)) { - solve(); - } else if (i + 1 == (DUMP_TEST_CASE)) { - dump(); - } else { - dump_ignore(); - } -#else - solve(); -#endif - } -#endif -}