summaryrefslogtreecommitdiff
path: root/test/graph
diff options
context:
space:
mode:
Diffstat (limited to 'test/graph')
-rw-r--r--test/graph/scc.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/graph/scc.cpp b/test/graph/scc.cpp
index 123050f..9ab7051 100644
--- a/test/graph/scc.cpp
+++ b/test/graph/scc.cpp
@@ -16,18 +16,6 @@ void stress_test() {
});
scc();
- vector<bool> tmp(n);
- for (int i = 0; i < sz(sccs); i++) {
- for (int x : sccs[i]) {
- if (tmp[x]) cerr << "error: duclicate" << FAIL;
- if (idx[x] != i) cerr << "error: inconsistent" << FAIL;
- tmp[x] = true;
- }
- }
- for (int i = 0; i < n; i++) {
- if (!tmp[i]) cerr << "error: missing" << FAIL;
- }
-
init(n);
vector<ll> seen(n);
int tmpCounter = 0;