From 36282ca44af142f5f1900342ea5e2d5ac1fc34e2 Mon Sep 17 00:00:00 2001 From: chenzizhan Date: Thu, 18 Jul 2024 11:16:56 +0800 Subject: fix: level should decay to zero. check by find instead of find by exdata. only skip dummy. serialize --- test/test_fuzz_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_fuzz_test.cpp') 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++) { -- cgit v1.2.3