summaryrefslogtreecommitdiff
path: root/test/test_fuzz_test.cpp
diff options
context:
space:
mode:
authorchenzizhan <[email protected]>2024-07-18 11:16:56 +0800
committerchenzizhan <[email protected]>2024-07-18 11:16:56 +0800
commit36282ca44af142f5f1900342ea5e2d5ac1fc34e2 (patch)
treea9a1a7d832fb3394997dcf2d32517e2d79652692 /test/test_fuzz_test.cpp
parent8ce45ff4f96186c5d9e0f3e82addd2085d7c8788 (diff)
fix: level should decay to zero. check by find instead of find by exdata. only skip dummy. serialize
Diffstat (limited to 'test/test_fuzz_test.cpp')
-rw-r--r--test/test_fuzz_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_fuzz_test.cpp b/test/test_fuzz_test.cpp
index aa3487a..0fa8241 100644
--- a/test/test_fuzz_test.cpp
+++ b/test/test_fuzz_test.cpp
@@ -475,7 +475,7 @@ TEST(Fuzz_test, many_instance_random_flow_unregister_calibrate_reset_fork_merge_
est_total += value_est;
true_total += value_true;
}
- EXPECT_LE(abs(est_total - true_total) / true_total, 0.25);
+ EXPECT_LE(abs(est_total - true_total) / true_total, 0.2);
// printf("spreadsketch Mean ratio e: %f\n", abs(est_total - true_total) / true_total);
for (size_t j = 0; j < cell_num; j++) {