summaryrefslogtreecommitdiff
path: root/test/datastructures/dynamicConvexHull.cpp
diff options
context:
space:
mode:
authormzuenni <michi.zuendorf@gmail.com>2024-08-06 16:14:04 +0200
committermzuenni <michi.zuendorf@gmail.com>2024-08-06 16:14:04 +0200
commitd88debc398f18d4e3d1c53d221dffe3981f35e41 (patch)
tree6be8f25694423d3ad2fe044eb237492ac687e143 /test/datastructures/dynamicConvexHull.cpp
parentbbec09408867e82fb9dd9b242e6d99014f9534b6 (diff)
add another test
Diffstat (limited to 'test/datastructures/dynamicConvexHull.cpp')
-rw-r--r--test/datastructures/dynamicConvexHull.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/datastructures/dynamicConvexHull.cpp b/test/datastructures/dynamicConvexHull.cpp
index e0e56ef..f163397 100644
--- a/test/datastructures/dynamicConvexHull.cpp
+++ b/test/datastructures/dynamicConvexHull.cpp
@@ -31,11 +31,6 @@ void stress_test(ll range) {
ll expected = naive[0](x);
for (auto l : naive) expected = max(expected, l(x));
- if (got != expected) {
- for (auto l : naive) cerr << l.m << "*x+" << l.c << endl;
- cerr << x << ": " << got << " " << expected << endl;
- }
-
if (got != expected) cerr << "got: " << got << ", expected: " << expected << FAIL;
queries++;
}