From bfa206d12c6800ecf9d8eda1007c9bdb7c961719 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Fri, 3 Nov 2023 08:18:03 +0100 Subject: [PATCH] Losen tolerance on cohen acceleration --- test/cohen_acceleration_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cohen_acceleration_test.cpp b/test/cohen_acceleration_test.cpp index ad70c3f82..426908305 100644 --- a/test/cohen_acceleration_test.cpp +++ b/test/cohen_acceleration_test.cpp @@ -71,7 +71,7 @@ void test_divergent() { auto g = Divergent(); Real x = -cohen_acceleration(g); - CHECK_ULP_CLOSE(log(pi()/2)/2, x, (std::numeric_limits::digits > 100 ? 350 : 135)); + CHECK_ULP_CLOSE(log(pi()/2)/2, x, (std::numeric_limits::digits > 100 ? 350 : 150)); } int main()