diff options
author | 2008-07-20 13:11:00 +0000 | |
---|---|---|
committer | 2008-07-20 13:11:00 +0000 | |
commit | 71a22d32935aae870159b8b02b43175c08e3a4eb (patch) | |
tree | d31f9c13a58ef0863b3cb15859cefed40e452754 /lib/libm/src/e_exp.c | |
parent | get in the bug fix for pow, from fdlibm 5.3. also adapt it for (diff) | |
download | wireguard-openbsd-71a22d32935aae870159b8b02b43175c08e3a4eb.tar.xz wireguard-openbsd-71a22d32935aae870159b8b02b43175c08e3a4eb.zip |
Reme algorithm -> Remes algorithm. in comments
Diffstat (limited to 'lib/libm/src/e_exp.c')
-rw-r--r-- | lib/libm/src/e_exp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libm/src/e_exp.c b/lib/libm/src/e_exp.c index f9be5ac458b..c9ecdecdc04 100644 --- a/lib/libm/src/e_exp.c +++ b/lib/libm/src/e_exp.c @@ -31,7 +31,7 @@ static char rcsid[] = "$NetBSD: e_exp.c,v 1.8 1995/05/10 20:45:03 jtc Exp $"; * the interval [0,0.34658]: * Write * R(r**2) = r*(exp(r)+1)/(exp(r)-1) = 2 + r*r/6 - r**4/360 + ... - * We use a special Reme algorithm on [0,0.34658] to generate + * We use a special Remes algorithm on [0,0.34658] to generate * a polynomial of degree 5 to approximate R. The maximum error * of this polynomial approximation is bounded by 2**-59. In * other words, |