=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/builtin/math.c,v retrieving revision 1.8 retrieving revision 1.11 diff -u -p -r1.8 -r1.11 --- OpenXM_contrib2/asir2000/builtin/math.c 2003/12/26 05:47:37 1.8 +++ OpenXM_contrib2/asir2000/builtin/math.c 2015/08/06 10:01:52 1.11 @@ -45,14 +45,17 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/builtin/math.c,v 1.7 2003/12/24 08:00:38 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/builtin/math.c,v 1.10 2011/12/15 16:53:26 ohara Exp $ */ #include "ca.h" #include #include "parse.h" +#if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) +#include +#endif void Pdsqrt(),Pdsin(),Pdcos(),Pdtan(),Pdasin(),Pdacos(),Pdatan(),Pdlog(),Pdexp(); -void Pabs(),Pdfloor(),Pdceil(),Pdrint(); +void Pabs(),Pdfloor(),Pdceil(),Pdrint(),Pdisnan(); struct ftab math_tab[] = { {"dsqrt",Pdsqrt,1}, @@ -71,6 +74,7 @@ struct ftab math_tab[] = { {"dceil",Pdceil,1}, {"rint",Pdrint,1}, {"drint",Pdrint,1}, + {"disnan",Pdisnan,1}, {0,0,0}, }; @@ -254,7 +258,7 @@ Q *rp; a = -a; } else sgn = 1; -#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__x86_64) +#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__x86_64) au = ((unsigned int *)&a)[1]; al = ((unsigned int *)&a)[0]; #else @@ -297,7 +301,7 @@ Q *rp; a = -a; } else sgn = 1; -#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__x86_64) +#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__x86_64) au = ((unsigned int *)&a)[1]; al = ((unsigned int *)&a)[0]; #else @@ -327,7 +331,7 @@ Q *rp; *rp = 0; return; } -#if defined(VISUAL) +#if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) d = ToReal(ARG0(arg)); if ( d > 0 ) d = floor(d+0.5); @@ -344,7 +348,7 @@ Q *rp; a = -a; } else sgn = 1; -#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__x86_64) +#if defined(i386) || defined(__alpha) || defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__x86_64) au = ((unsigned int *)&a)[1]; al = ((unsigned int *)&a)[0]; #else @@ -359,4 +363,29 @@ Q *rp; } else q = 0; *rp = q; +} + +void Pdisnan(NODE arg,Q *rp) +{ + Real r; + double d; +#if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) + int c; +#endif + + r = (Real)ARG0(arg); + if ( !r || !NUM(r) || !REAL(r) ) { + *rp = 0; + return; + } + d = ToReal(r); +#if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__) + c = _fpclass(d); + if ( c == _FPCLASS_SNAN || c == _FPCLASS_QNAN ) *rp = ONE; + else if ( c == _FPCLASS_PINF || c == _FPCLASS_NINF ) STOQ(2,*rp); +#else + if ( isnan(d) ) *rp = ONE; + else if ( isinf(d) ) STOQ(2,*rp); +#endif + else *rp = 0; }