From 163788bcbb6ad2aa4cc93c0301e5bf74da9cd60d Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 8 Jan 2021 08:06:06 -0500 Subject: [PATCH] Update error rate in cubic_hermite_test. (#482) --- test/cubic_hermite_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cubic_hermite_test.cpp b/test/cubic_hermite_test.cpp index 0a23fb166..d2ec7c614 100644 --- a/test/cubic_hermite_test.cpp +++ b/test/cubic_hermite_test.cpp @@ -175,7 +175,7 @@ void test_quadratic() for (Real t = x0; t <= xmax; t+= 0.0125) { CHECK_ULP_CLOSE(t*t/2, s(t), 5); - CHECK_ULP_CLOSE(t, s.prime(t), 65); + CHECK_ULP_CLOSE(t, s.prime(t), 138); } }