diff options
author | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-03-14 09:50:29 +0000 |
---|---|---|
committer | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-03-14 09:50:29 +0000 |
commit | 4cc3d7b6458a25fd58ae71c1091930fbd55cdf28 (patch) | |
tree | 15cfc2b368672fedbc760aef8dae27babc9484a1 /atanh.c | |
parent | 106ab958c8bc8e64c63bac9bfb885a1ebca56053 (diff) | |
download | mpfr-4cc3d7b6458a25fd58ae71c1091930fbd55cdf28.tar.gz |
Replace mpfr_can_round (..., GMP_RNDN, GMP_RNDZ, ...) to fast replacement
mpfr_round_p.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3388 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'atanh.c')
-rw-r--r-- | atanh.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -103,8 +103,7 @@ mpfr_atanh (mpfr_ptr y, mpfr_srcptr xt , mp_rnd_t rnd_mode) err = Nt - (MAX (4 - MPFR_GET_EXP (t), 0) + 1); if (MPFR_LIKELY (MPFR_IS_ZERO (t) - || mpfr_can_round (t, err, GMP_RNDN, GMP_RNDZ, - Ny + (rnd_mode == GMP_RNDN)))) + || MPFR_CAN_ROUND (t, err, Ny, rnd_mode))) break; /* reactualisation of the precision */ |