2009-09-12 23:20:13 -04:00
|
|
|
! Copyright (C) 2003, 2009 Slava Pestov, Joe Groff.
|
2007-09-20 18:09:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: kernel math.private ;
|
|
|
|
IN: math
|
|
|
|
|
2008-06-12 06:49:46 -04:00
|
|
|
GENERIC: >fixnum ( x -- n ) foldable
|
|
|
|
GENERIC: >bignum ( x -- n ) foldable
|
|
|
|
GENERIC: >integer ( x -- n ) foldable
|
2007-09-20 18:09:08 -04:00
|
|
|
GENERIC: >float ( x -- y ) foldable
|
|
|
|
|
2008-06-28 03:36:20 -04:00
|
|
|
GENERIC: numerator ( a/b -- a )
|
|
|
|
GENERIC: denominator ( a/b -- b )
|
|
|
|
|
|
|
|
GENERIC: real-part ( z -- x )
|
|
|
|
GENERIC: imaginary-part ( z -- y )
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
MATH: number= ( x y -- ? ) foldable
|
2007-10-14 20:38:23 -04:00
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
M: object number= 2drop f ;
|
|
|
|
|
|
|
|
MATH: < ( x y -- ? ) foldable
|
|
|
|
MATH: <= ( x y -- ? ) foldable
|
|
|
|
MATH: > ( x y -- ? ) foldable
|
|
|
|
MATH: >= ( x y -- ? ) foldable
|
2009-09-12 23:20:13 -04:00
|
|
|
|
2009-09-10 23:45:18 -04:00
|
|
|
MATH: unordered? ( x y -- ? ) foldable
|
2009-09-12 23:20:13 -04:00
|
|
|
MATH: u< ( x y -- ? ) foldable
|
|
|
|
MATH: u<= ( x y -- ? ) foldable
|
|
|
|
MATH: u> ( x y -- ? ) foldable
|
|
|
|
MATH: u>= ( x y -- ? ) foldable
|
2009-09-10 23:45:18 -04:00
|
|
|
|
|
|
|
M: object unordered? 2drop f ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
MATH: + ( x y -- z ) foldable
|
|
|
|
MATH: - ( x y -- z ) foldable
|
|
|
|
MATH: * ( x y -- z ) foldable
|
|
|
|
MATH: / ( x y -- z ) foldable
|
2008-04-28 22:26:31 -04:00
|
|
|
MATH: /f ( x y -- z ) foldable
|
2007-09-20 18:09:08 -04:00
|
|
|
MATH: /i ( x y -- z ) foldable
|
|
|
|
MATH: mod ( x y -- z ) foldable
|
|
|
|
|
|
|
|
MATH: /mod ( x y -- z w ) foldable
|
|
|
|
|
|
|
|
MATH: bitand ( x y -- z ) foldable
|
|
|
|
MATH: bitor ( x y -- z ) foldable
|
|
|
|
MATH: bitxor ( x y -- z ) foldable
|
|
|
|
GENERIC# shift 1 ( x n -- y ) foldable
|
|
|
|
GENERIC: bitnot ( x -- y ) foldable
|
|
|
|
GENERIC# bit? 1 ( x n -- ? ) foldable
|
|
|
|
|
2008-04-28 22:26:31 -04:00
|
|
|
GENERIC: abs ( x -- y ) foldable
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
<PRIVATE
|
|
|
|
|
|
|
|
GENERIC: (log2) ( x -- n ) foldable
|
|
|
|
|
|
|
|
PRIVATE>
|
|
|
|
|
2009-08-12 00:09:02 -04:00
|
|
|
ERROR: log2-expects-positive x ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
: log2 ( x -- n )
|
2010-11-16 06:13:15 -05:00
|
|
|
dup 0 <= [ log2-expects-positive ] [ (log2) ] if ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-04-28 22:26:31 -04:00
|
|
|
: zero? ( x -- ? ) 0 number= ; inline
|
2008-04-18 17:51:09 -04:00
|
|
|
: 2/ ( x -- y ) -1 shift ; inline
|
|
|
|
: sq ( x -- y ) dup * ; inline
|
2009-05-21 19:49:22 -04:00
|
|
|
: neg ( x -- -x ) -1 * ; inline
|
2008-04-18 17:51:09 -04:00
|
|
|
: recip ( x -- y ) 1 swap / ; inline
|
2008-04-26 00:12:44 -04:00
|
|
|
: sgn ( x -- n ) dup 0 < [ drop -1 ] [ 0 > 1 0 ? ] if ; inline
|
2009-05-01 20:58:24 -04:00
|
|
|
: ?1+ ( x -- y ) [ 1 + ] [ 0 ] if* ; inline
|
2009-02-02 14:43:54 -05:00
|
|
|
: rem ( x y -- z ) abs [ mod ] [ + ] [ mod ] tri ; foldable
|
2007-09-20 18:09:08 -04:00
|
|
|
: 2^ ( n -- 2^n ) 1 swap shift ; inline
|
2010-11-16 06:13:15 -05:00
|
|
|
: even? ( n -- ? ) 1 bitand zero? ; inline
|
|
|
|
: odd? ( n -- ? ) 1 bitand 1 number= ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2010-03-05 03:21:10 -05:00
|
|
|
: if-zero ( ..a n quot1: ( ..a -- ..b ) quot2: ( ..a n -- ..b ) -- ..b )
|
2009-08-14 15:27:23 -04:00
|
|
|
[ dup zero? ] [ [ drop ] prepose ] [ ] tri* if ; inline
|
|
|
|
|
|
|
|
: when-zero ( n quot -- ) [ ] if-zero ; inline
|
|
|
|
|
|
|
|
: unless-zero ( n quot -- ) [ ] swap if-zero ; inline
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
UNION: integer fixnum bignum ;
|
|
|
|
|
2009-04-30 01:27:35 -04:00
|
|
|
TUPLE: ratio { numerator integer read-only } { denominator integer read-only } ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
UNION: rational integer ratio ;
|
|
|
|
|
|
|
|
UNION: real rational float ;
|
|
|
|
|
2009-04-30 01:27:35 -04:00
|
|
|
TUPLE: complex { real real read-only } { imaginary real read-only } ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
UNION: number real complex ;
|
|
|
|
|
2009-05-09 19:17:30 -04:00
|
|
|
: fp-bitwise= ( x y -- ? ) [ double>bits ] bi@ = ; inline
|
|
|
|
|
2009-05-09 10:49:31 -04:00
|
|
|
GENERIC: fp-special? ( x -- ? )
|
2007-09-20 18:09:08 -04:00
|
|
|
GENERIC: fp-nan? ( x -- ? )
|
2009-05-09 10:49:31 -04:00
|
|
|
GENERIC: fp-qnan? ( x -- ? )
|
|
|
|
GENERIC: fp-snan? ( x -- ? )
|
|
|
|
GENERIC: fp-infinity? ( x -- ? )
|
|
|
|
GENERIC: fp-nan-payload ( x -- bits )
|
2009-09-12 17:24:07 -04:00
|
|
|
GENERIC: fp-sign ( x -- ? )
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-08-20 04:55:19 -04:00
|
|
|
M: object fp-special? drop f ; inline
|
|
|
|
M: object fp-nan? drop f ; inline
|
|
|
|
M: object fp-qnan? drop f ; inline
|
|
|
|
M: object fp-snan? drop f ; inline
|
|
|
|
M: object fp-infinity? drop f ; inline
|
2008-09-03 02:35:03 -04:00
|
|
|
|
2009-05-09 10:49:31 -04:00
|
|
|
: <fp-nan> ( payload -- nan )
|
2009-08-17 23:32:21 -04:00
|
|
|
HEX: 7ff0000000000000 bitor bits>double ; inline
|
2009-05-09 10:49:31 -04:00
|
|
|
|
2009-08-20 04:55:19 -04:00
|
|
|
GENERIC: next-float ( m -- n )
|
|
|
|
GENERIC: prev-float ( m -- n )
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-12-07 20:44:49 -05:00
|
|
|
: next-power-of-2 ( m -- n )
|
2009-05-01 20:58:24 -04:00
|
|
|
dup 2 <= [ drop 2 ] [ 1 - log2 1 + 2^ ] if ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-04-17 13:22:24 -04:00
|
|
|
: power-of-2? ( n -- ? )
|
2009-05-01 20:58:24 -04:00
|
|
|
dup 0 <= [ drop f ] [ dup 1 - bitand zero? ] if ; foldable
|
2008-04-17 13:22:24 -04:00
|
|
|
|
|
|
|
: align ( m w -- n )
|
2009-05-01 20:58:24 -04:00
|
|
|
1 - [ + ] keep bitnot bitand ; inline
|
2007-10-14 20:38:23 -04:00
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
<PRIVATE
|
|
|
|
|
2008-12-22 06:41:01 -05:00
|
|
|
: iterate-prep ( n quot -- i n quot ) [ 0 ] 2dip ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-12-13 06:06:28 -05:00
|
|
|
: if-iterate? ( i n true false -- ) [ 2over < ] 2dip if ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: iterate-step ( i n quot -- i n quot )
|
|
|
|
#! Apply quot to i, keep i and quot, hide n.
|
2009-02-05 04:29:59 -05:00
|
|
|
[ nip call ] 3keep ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-05-01 20:58:24 -04:00
|
|
|
: iterate-next ( i n quot -- i' n quot ) [ 1 + ] 2dip ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
PRIVATE>
|
|
|
|
|
2010-03-05 03:21:10 -05:00
|
|
|
: (each-integer) ( ... i n quot: ( ... i -- ... ) -- ... )
|
2007-09-20 18:09:08 -04:00
|
|
|
[ iterate-step iterate-next (each-integer) ]
|
2008-07-18 20:22:59 -04:00
|
|
|
[ 3drop ] if-iterate? ; inline recursive
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2010-03-05 03:21:10 -05:00
|
|
|
: (find-integer) ( ... i n quot: ( ... i -- ... ? ) -- ... i )
|
2007-09-20 18:09:08 -04:00
|
|
|
[
|
2009-10-30 14:36:15 -04:00
|
|
|
iterate-step
|
|
|
|
[ [ ] ] 2dip
|
|
|
|
[ iterate-next (find-integer) ] 2curry bi-curry if
|
2008-07-18 20:22:59 -04:00
|
|
|
] [ 3drop f ] if-iterate? ; inline recursive
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2010-03-05 03:21:10 -05:00
|
|
|
: (all-integers?) ( ... i n quot: ( ... i -- ... ? ) -- ... ? )
|
2007-09-20 18:09:08 -04:00
|
|
|
[
|
2009-10-30 14:36:15 -04:00
|
|
|
iterate-step
|
|
|
|
[ iterate-next (all-integers?) ] 3curry
|
|
|
|
[ f ] if
|
2008-07-18 20:22:59 -04:00
|
|
|
] [ 3drop t ] if-iterate? ; inline recursive
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2010-05-13 17:30:19 -04:00
|
|
|
: each-integer ( ... n quot: ( ... i -- ... ) -- ... )
|
2007-09-20 18:09:08 -04:00
|
|
|
iterate-prep (each-integer) ; inline
|
|
|
|
|
2010-05-13 17:30:19 -04:00
|
|
|
: times ( ... n quot: ( ... -- ... ) -- ... )
|
2008-04-26 00:12:44 -04:00
|
|
|
[ drop ] prepose each-integer ; inline
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2010-05-13 17:30:19 -04:00
|
|
|
: find-integer ( ... n quot: ( ... i -- ... ? ) -- ... i )
|
2007-09-20 18:09:08 -04:00
|
|
|
iterate-prep (find-integer) ; inline
|
|
|
|
|
2010-05-13 17:30:19 -04:00
|
|
|
: all-integers? ( ... n quot: ( ... i -- ... ? ) -- ... ? )
|
2007-09-20 18:09:08 -04:00
|
|
|
iterate-prep (all-integers?) ; inline
|
|
|
|
|
2010-03-05 03:21:10 -05:00
|
|
|
: find-last-integer ( ... n quot: ( ... i -- ... ? ) -- ... i )
|
2007-09-20 18:09:08 -04:00
|
|
|
over 0 < [
|
|
|
|
2drop f
|
|
|
|
] [
|
2009-02-05 04:29:59 -05:00
|
|
|
[ call ] 2keep rot [
|
2007-09-20 18:09:08 -04:00
|
|
|
drop
|
|
|
|
] [
|
2009-05-01 20:58:24 -04:00
|
|
|
[ 1 - ] dip find-last-integer
|
2007-09-20 18:09:08 -04:00
|
|
|
] if
|
2008-07-18 20:22:59 -04:00
|
|
|
] if ; inline recursive
|