From 5bd7aef7971df1929222d93b437d9392b935c1ff Mon Sep 17 00:00:00 2001 From: vlefevre Date: Thu, 14 Feb 2002 11:36:40 +0000 Subject: mpfr_{div,mul}_2exp -> mpfr_{div,mul}_2ui. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1699 280ebfd0-de03-0410-8827-d642c229c3f4 --- cosh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cosh.c') diff --git a/cosh.c b/cosh.c index 458615398..a124585af 100644 --- a/cosh.c +++ b/cosh.c @@ -99,7 +99,7 @@ mpfr_cosh (mpfr_ptr y, mpfr_srcptr xt , mp_rnd_t rnd_mode) mpfr_exp(te,x,GMP_RNDD); /* exp(x) */ mpfr_ui_div(ti,1,te,GMP_RNDU); /* 1/exp(x) */ mpfr_add(t,te,ti,GMP_RNDN); /* exp(x) + 1/exp(x)*/ - mpfr_div_2exp(t,t,1,GMP_RNDN); /* 1/2(exp(x) + 1/exp(x))*/ + mpfr_div_2ui(t,t,1,GMP_RNDN); /* 1/2(exp(x) + 1/exp(x))*/ /* estimation of the error */ err=Nt-3; -- cgit v1.2.1