diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-22 14:04:29 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-22 14:04:29 +0000 |
commit | 7ce331c01ce6eb7b3f5c715a38a24359da9c6ee2 (patch) | |
tree | 3a7e8476e868ae15f4da1b7ce26b2db6f434468c /libm/double/noncephes.c | |
parent | c117dd5fb183afb1a4790a6f6110d88704be6bf8 (diff) |
Totally rework the math library, this time based on the MacOs X
math library (which is itself based on the math lib from FreeBSD).
-Erik
Diffstat (limited to 'libm/double/noncephes.c')
-rw-r--r-- | libm/double/noncephes.c | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/libm/double/noncephes.c b/libm/double/noncephes.c deleted file mode 100644 index 72f129d55..000000000 --- a/libm/double/noncephes.c +++ /dev/null @@ -1,127 +0,0 @@ -/* - * This file contains math functions missing from the Cephes library. - * - * May 22, 2001 Manuel Novoa III - * - * Added modf and fmod. - * - * TODO: - * Break out functions into seperate object files as is done - * by (for example) stdio. Also do this with cephes files. - */ - -#include <math.h> -#include <errno.h> - -#undef UNK - -/* Set this to nonzero to enable a couple of shortcut tests in fmod. */ -#define SPEED_OVER_SIZE 0 - -/**********************************************************************/ - -double modf(double x, double *iptr) -{ - double y; - -#ifdef UNK - mtherr( "modf", DOMAIN ); - *iptr = NAN; - return NAN; -#endif - -#ifdef NANS - if( isnan(x) ) { - *iptr = x; - return x; - } -#endif - -#ifdef INFINITIES - if(!isfinite(x)) { - *iptr = x; /* Matches glibc, but returning NAN */ - return 0; /* makes more sense to me... */ - } -#endif - - if (x < 0) { /* Round towards 0. */ - y = ceil(x); - } else { - y = floor(x); - } - - *iptr = y; - return x - y; -} - -/**********************************************************************/ - -extern double NAN; - -double fmod(double x, double y) -{ - double z; - int negative, ex, ey; - -#ifdef UNK - mtherr( "fmod", DOMAIN ); - return NAN; -#endif - -#ifdef NANS - if( isnan(x) || isnan(y) ) { - errno = EDOM; - return NAN; - } -#endif - - if (y == 0) { - errno = EDOM; - return NAN; - } - -#ifdef INFINITIES - if(!isfinite(x)) { - errno = EDOM; - return NAN; - } - -#if SPEED_OVER_SIZE - if(!isfinite(y)) { - return x; - } -#endif -#endif - -#if SPEED_OVER_SIZE - if (x == 0) { - return 0; - } -#endif - - negative = 0; - if (x < 0) { - negative = 1; - x = -x; - } - - if (y < 0) { - y = -y; - } - - frexp(y,&ey); - while (x >= y) { - frexp(x,&ex); - z = ldexp(y,ex-ey); - if (z > x) { - z /= 2; - } - x -= z; - } - - if (negative) { - return -x; - } else { - return x; - } -} |