add infinity? and nan? to math.floating-point

db4
Doug Coleman 2008-12-03 19:15:58 -06:00
parent 7d2ca36fad
commit b11caac25f
2 changed files with 26 additions and 2 deletions

View File

@ -1,7 +1,17 @@
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: tools.test math.floating-point math.constants kernel ;
USING: tools.test math.floating-point math.constants kernel
math.constants fry sequences kernel math ;
IN: math.floating-point.tests
[ t ] [ pi >double< >double pi = ] unit-test
[ t ] [ -1.0 >double< >double -1.0 = ] unit-test
[ t ] [ 1/0. infinity? ] unit-test
[ t ] [ -1/0. infinity? ] unit-test
[ f ] [ 0/0. infinity? ] unit-test
[ f ] [ 10. infinity? ] unit-test
[ f ] [ -10. infinity? ] unit-test
[ f ] [ 0. infinity? ] unit-test
[ t ] [ 0/0. nan? ] unit-test

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: kernel math sequences prettyprint math.parser io
math.functions math.bitwise ;
math.functions math.bitwise combinators.short-circuit ;
IN: math.floating-point
: (double-sign) ( bits -- n ) -63 shift ; inline
@ -37,3 +37,17 @@ IN: math.floating-point
(double-mantissa-bits) >bin 52 CHAR: 0 pad-left
11 [ bl ] times print
] tri ;
: nan? ( double -- ? )
double>bits
{
[ (double-exponent-bits) 11 on-bits = ]
[ (double-mantissa-bits) 0 > ]
} 1&& ;
: infinity? ( double -- ? )
double>bits
{
[ (double-exponent-bits) 11 on-bits = ]
[ (double-mantissa-bits) 0 = ]
} 1&& ;