summaryrefslogtreecommitdiff
path: root/exp.c
diff options
context:
space:
mode:
authorjeandel <jeandel@280ebfd0-de03-0410-8827-d642c229c3f4>2000-06-28 08:33:06 +0000
committerjeandel <jeandel@280ebfd0-de03-0410-8827-d642c229c3f4>2000-06-28 08:33:06 +0000
commitf38c3ab9f3c7e6759d94f0100fc72668d891e4e3 (patch)
tree283e20ab9335a648771ca23a2e4086833c93e504 /exp.c
parent5d14d60bf867a62887d12f1bc6fdee043ff089ae (diff)
downloadmpfr-f38c3ab9f3c7e6759d94f0100fc72668d891e4e3.tar.gz
First Release
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@653 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'exp.c')
-rw-r--r--exp.c107
1 files changed, 2 insertions, 105 deletions
diff --git a/exp.c b/exp.c
index 67b4e1b7a..a8f939e6e 100644
--- a/exp.c
+++ b/exp.c
@@ -51,9 +51,6 @@ mpfr_exp(y, x, rnd_mode)
expx = EXP(x);
precy = PREC(y);
-#ifdef DEBUG
- printf("EXP(x)=%d\n",expx);
-#endif
/* if x > (2^31-1)*ln(2), then exp(x) > 2^(2^31-1) i.e. gives +infinity */
if (expx > 30) {
@@ -69,108 +66,8 @@ mpfr_exp(y, x, rnd_mode)
mpfr_sub_one_ulp(y);
return 1; }
- n = (int) floor(mpfr_get_d(x)/LOG2);
-
- K = (int) sqrt( (double) precy );
- l = (precy-1)/K + 1;
- err = K + (int) ceil(log(2.0*(double)l+18.0)/LOG2);
- /* add K extra bits, i.e. failure probability <= 1/2^K = O(1/precy) */
- q = precy + err + K + 3;
- mpfr_init2(r, q); mpfr_init2(s, q); mpfr_init2(t, q);
- /* the algorithm consists in computing an upper bound of exp(x) using
- a precision of q bits, and see if we can round to PREC(y) taking
- into account the maximal error. Otherwise we increase q. */
- do {
-#ifdef DEBUG
- printf("n=%d K=%d l=%d q=%d\n",n,K,l,q);
-#endif
-
- /* if n<0, we have to get an upper bound of log(2)
- in order to get an upper bound of r = x-n*log(2) */
- mpfr_const_log2(s, (n>=0) ? GMP_RNDZ : GMP_RNDU);
-#ifdef DEBUG
- printf("n=%d log(2)=",n); mpfr_print_raw(s); putchar('\n');
-#endif
- mpfr_mul_ui(r, s, (n<0) ? -n : n, (n>=0) ? GMP_RNDZ : GMP_RNDU);
- if (n<0) mpfr_neg(r, r, GMP_RNDD);
- /* r = floor(n*log(2)) */
-
-#ifdef DEBUG
- printf("x=%1.20e\n",mpfr_get_d(x));
- printf(" ="); mpfr_print_raw(x); putchar('\n');
- printf("r=%1.20e\n",mpfr_get_d(r));
- printf(" ="); mpfr_print_raw(r); putchar('\n');
-#endif
- mpfr_sub(r, x, r, GMP_RNDU);
- if (MPFR_SIGN(r)<0) { /* initial approximation n was too large */
- n--;
- mpfr_mul_ui(r, s, (n<0) ? -n : n, GMP_RNDZ);
- if (n<0) mpfr_neg(r, r, GMP_RNDD);
- mpfr_sub(r, x, r, GMP_RNDU);
- }
-#ifdef DEBUG
- printf("x-r=%1.20e\n",mpfr_get_d(r));
- printf(" ="); mpfr_print_raw(r); putchar('\n');
- if (MPFR_SIGN(r)<0) { fprintf(stderr,"Error in mpfr_exp: r<0\n"); exit(1); }
-#endif
- mpfr_div_2exp(r, r, K, GMP_RNDU); /* r = (x-n*log(2))/2^K */
- mpfr_set_ui(s, 1, GMP_RNDU);
- mpfr_set_ui(t, 1, GMP_RNDU);
-
- l = 1; expr = EXP(r);
- do {
- mpfr_mul(t, t, r, GMP_RNDU);
- mpfr_div_ui(t, t, l, GMP_RNDU);
- mpfr_add(s, s, t, GMP_RNDU);
-#ifdef DEBUG
- printf("l=%d t=%1.20e\n",l,mpfr_get_d(t));
- printf("s=%1.20e\n",mpfr_get_d(s));
-#endif
- l++;
- } while (EXP(t)+expr > -q);
-#ifdef DEBUG
- printf("l=%d q=%d (K+l)*q^2=%1.3e\n", l, q, (K+l)*(double)q*q);
-#endif
-
- /* add 2 ulp to take into account rest of summation */
- mpfr_add_one_ulp(s);
- mpfr_add_one_ulp(s);
-
- for (k=0;k<K;k++) {
- mpfr_mul(s, s, s, GMP_RNDU);
-#ifdef DEBUG
- printf("k=%d s=%1.20e\n",k,mpfr_get_d(s));
-#endif
- }
-
- if (n>0) mpfr_mul_2exp(s, s, n, GMP_RNDU);
- else mpfr_div_2exp(s, s, -n, GMP_RNDU);
-
- /* error is at most 2^K*(2l+18) ulp */
- l = 2*l+17; k=0; while (l) { k++; l >>= 1; }
- /* now k = ceil(log(2l+18)/log(2)) */
- K += k;
-#ifdef DEBUG
- printf("after mult. by 2^n:\n");
- if (EXP(s)>-1024) printf("s=%1.20e\n",mpfr_get_d(s));
- printf(" ="); mpfr_print_raw(s); putchar('\n');
- printf("err=%d bits\n", K);
-#endif
-
- l = mpfr_can_round(s, q-K, GMP_RNDU, rnd_mode, precy);
- if (l==0) {
-#ifdef DEBUG
- printf("not enough precision, use %d\n", q+BITS_PER_MP_LIMB);
- printf("q=%d q-K=%d precy=%d\n",q,q-K,precy);
-#endif
- q += BITS_PER_MP_LIMB;
- mpfr_set_prec(r, q); mpfr_set_prec(s, q); mpfr_set_prec(t, q);
- }
- } while (l==0);
-
- mpfr_set(y, s, rnd_mode);
-
- mpfr_clear(r); mpfr_clear(s); mpfr_clear(t);
+ if (precy > 7000) mpfr_exp3(y,x,rnd_mode);
+ else mpfr_exp2(y,x,rnd_mode);
return 1;
}