From 5fc9214ad1d9fb460ffe8d47173bc540b9977447 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 8 Jan 2021 07:07:57 -0600 Subject: [PATCH] Update error rate in 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 291cb85b6..24534cdf5 100644 --- a/test/cohen_acceleration_test.cpp +++ b/test/cohen_acceleration_test.cpp @@ -65,7 +65,7 @@ void test_divergent() { auto g = Divergent(); Real x = -cohen_acceleration(g); - CHECK_ULP_CLOSE(log(pi()/2)/2, x, 80); + CHECK_ULP_CLOSE(log(pi()/2)/2, x, 135); } int main()