From 0cebc901e79c21168601071e29ed8e4f4b6f9505 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Sun, 10 Mar 2024 20:43:13 +0100 Subject: add tests for Fenwick Tree --- graph/test/util.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'graph') 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(0, x-1)(rd); -} - void shuffle_adj_lists(vector> &adj) { for (auto &a: adj) ranges::shuffle(a, rd); } -- cgit v1.2.3