-
Notifications
You must be signed in to change notification settings - Fork 25
/
mpf_exp.c
62 lines (50 loc) · 2.25 KB
/
mpf_exp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* LibTomFloat, multiple-precision floating-point library
*
* LibTomFloat is a library that provides multiple-precision
* floating-point artihmetic as well as trigonometric functionality.
*
* This library requires the public domain LibTomMath to be installed.
*
* This library is free for all purposes without any express
* gurantee it works
*
* Tom St Denis, [email protected], http://float.libtomcrypt.org
*/
#include <tomfloat.h>
/* compute b = e^a using e^x == \sum_{n=0}^{\infty} {1 \over n!}x^n */
int mpf_exp(mp_float *a, mp_float *b)
{
mp_float oldval, tmpx, tmpovern, tmp, res;
int err, itts;
long n;
/* initialize temps */
if ((err = mpf_init_multi(b->radix, &oldval, &tmpx, &tmpovern, &tmp, &res, NULL)) != MP_OKAY) {
return err;
}
/* initlialize temps */
/* all three start at one */
if ((err = mpf_const_d(&res, 1)) != MP_OKAY) { goto __ERR; }
if ((err = mpf_const_d(&tmpovern, 1)) != MP_OKAY) { goto __ERR; }
if ((err = mpf_const_d(&tmpx, 1)) != MP_OKAY) { goto __ERR; }
n = 1;
/* get number of iterations */
itts = mpf_iterations(b);
while (itts-- > 0) {
if ((err = mpf_copy(&res, &oldval)) != MP_OKAY) { goto __ERR; }
/* compute 1/n! as 1/(n-1)! * 1/n */
if ((err = mpf_const_d(&tmp, n++)) != MP_OKAY) { goto __ERR; }
if ((err = mpf_inv(&tmp, &tmp)) != MP_OKAY) { goto __ERR; }
if ((err = mpf_mul(&tmp, &tmpovern, &tmpovern)) != MP_OKAY) { goto __ERR; }
/* compute x^n as x^(n-1) * x */
if ((err = mpf_mul(&tmpx, a, &tmpx)) != MP_OKAY) { goto __ERR; }
/* multiply and sum them */
if ((err = mpf_mul(&tmpovern, &tmpx, &tmp)) != MP_OKAY) { goto __ERR; }
if ((err = mpf_add(&tmp, &res, &res)) != MP_OKAY) { goto __ERR; }
if (mpf_cmp(&oldval, &res) == MP_EQ) {
break;
}
}
mpf_exch(&res, b);
__ERR: mpf_clear_multi(&oldval, &tmpx, &tmpovern, &tmp, &res, NULL);
return err;
}