summaryrefslogtreecommitdiff
path: root/test/datastructures/fenwickTree2.cpp
diff options
context:
space:
mode:
authorMZuenni <michi.zuendorf@gmail.com>2024-08-13 17:14:17 +0200
committerMZuenni <michi.zuendorf@gmail.com>2024-08-13 17:14:17 +0200
commitf32a00178f0d3b2152a6fc1dc492c987aaede85f (patch)
treefbc52e3475de069ed8b63513f98105bbc0728d6c /test/datastructures/fenwickTree2.cpp
parent6fd4266de544582c0609a2fa204e0e49cd390c6e (diff)
small improvements
Diffstat (limited to 'test/datastructures/fenwickTree2.cpp')
-rw-r--r--test/datastructures/fenwickTree2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/datastructures/fenwickTree2.cpp b/test/datastructures/fenwickTree2.cpp
index aa99576..89d5b0f 100644
--- a/test/datastructures/fenwickTree2.cpp
+++ b/test/datastructures/fenwickTree2.cpp
@@ -9,7 +9,7 @@ void stress_test() {
ll queries = 0;
for (int tries = 0; tries < 100; tries++) {
int n = Random::integer<int>(10, 100);
- vector<ll> naive(n);// = Random::integers<ll>(n, -1000, 1000);
+ vector<ll> naive = Random::integers<ll>(n, -1000, 1000);
init(naive);
for (int operations = 0; operations < 1000; operations++) {
{