summaryrefslogtreecommitdiff
path: root/graph
diff options
context:
space:
mode:
Diffstat (limited to 'graph')
-rw-r--r--graph/test/util.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/graph/test/util.cpp b/graph/test/util.cpp
index 8bec1ee..8c14b5c 100644
--- a/graph/test/util.cpp
+++ b/graph/test/util.cpp
@@ -1,13 +1,6 @@
namespace util {
-mt19937 rd(0);
-
-int randint(int x) {
- assert(x > 0);
- return uniform_int_distribution<int>(0, x-1)(rd);
-}
-
void shuffle_adj_lists(vector<vector<int>> &adj) {
for (auto &a: adj) ranges::shuffle(a, rd);
}