diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/libm-test.c b/math/libm-test.c index de1e23b36e..8e52d00c9d 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -5741,9 +5741,9 @@ yn_test (void) check_isnan ("yn (1, NaN) = NaN", FUNC(yn) (1, nan_value)); check_eps ("yn (1, 0.1) = -6.45895...", FUNC(yn) (1, 0.1), -6.4589510947020269877, - CHOOSE(0, 9e-16, 5e-7)); + CHOOSE(0, 9e-16, 9.6e-7)); check_eps ("yn (1, 0.7) = -1.10324...", FUNC(yn) (1, 0.7), -1.1032498719076333697, - CHOOSE(0, 3e-16, 0)); + CHOOSE(0, 3e-16, 1.2e-7)); check_eps ("yn (1, 1.0) = -0.78121...", FUNC(yn) (1, 1.0), -0.78121282130028871655, CHOOSE(0, 2e-16, 0)); check_eps ("yn (1, 1.5) = -0.41230...", FUNC(yn) (1, 1.5), -0.41230862697391129595, |