2005-01-16 17:58:28 -05:00
|
|
|
! Copyright (C) 2003, 2005 Slava Pestov.
|
2005-02-08 22:02:44 -05:00
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2004-07-16 02:26:21 -04:00
|
|
|
IN: math
|
2005-04-21 00:49:19 -04:00
|
|
|
USING: errors generic kernel math-internals ;
|
2004-07-16 02:26:21 -04:00
|
|
|
|
2004-12-18 23:18:32 -05:00
|
|
|
! Math operations
|
2005-08-22 15:33:18 -04:00
|
|
|
G: number= ( x y -- ? ) math-combination ; foldable
|
2004-12-18 23:35:20 -05:00
|
|
|
M: object number= 2drop f ;
|
|
|
|
|
2005-08-22 15:33:18 -04:00
|
|
|
G: < ( x y -- ? ) math-combination ; foldable
|
|
|
|
G: <= ( x y -- ? ) math-combination ; foldable
|
|
|
|
G: > ( x y -- ? ) math-combination ; foldable
|
|
|
|
G: >= ( x y -- ? ) math-combination ; foldable
|
|
|
|
|
|
|
|
G: + ( x y -- x+y ) math-combination ; foldable
|
|
|
|
G: - ( x y -- x-y ) math-combination ; foldable
|
|
|
|
G: * ( x y -- x*y ) math-combination ; foldable
|
|
|
|
G: / ( x y -- x/y ) math-combination ; foldable
|
|
|
|
G: /i ( x y -- x/y ) math-combination ; foldable
|
|
|
|
G: /f ( x y -- x/y ) math-combination ; foldable
|
|
|
|
G: mod ( x y -- x%y ) math-combination ; foldable
|
|
|
|
|
|
|
|
G: /mod ( x y -- x/y x%y ) math-combination ; foldable
|
|
|
|
|
|
|
|
G: bitand ( x y -- z ) math-combination ; foldable
|
|
|
|
G: bitor ( x y -- z ) math-combination ; foldable
|
|
|
|
G: bitxor ( x y -- z ) math-combination ; foldable
|
|
|
|
G: shift ( x n -- y ) math-combination ; foldable
|
2004-12-18 23:18:32 -05:00
|
|
|
|
2005-09-16 22:47:28 -04:00
|
|
|
GENERIC: 1+ ( x -- x+1 ) foldable
|
|
|
|
GENERIC: 1- ( x -- x-1 ) foldable
|
|
|
|
|
2005-08-12 18:02:03 -04:00
|
|
|
GENERIC: bitnot ( n -- n ) foldable
|
2004-12-18 23:18:32 -05:00
|
|
|
|
2005-08-12 18:02:03 -04:00
|
|
|
GENERIC: truncate ( n -- n ) foldable
|
|
|
|
GENERIC: floor ( n -- n ) foldable
|
|
|
|
GENERIC: ceiling ( n -- n ) foldable
|
2004-07-16 02:26:21 -04:00
|
|
|
|
2005-05-15 21:17:56 -04:00
|
|
|
: max ( x y -- z ) [ > ] 2keep ? ; inline
|
|
|
|
: min ( x y -- z ) [ < ] 2keep ? ; inline
|
2004-12-18 23:18:32 -05:00
|
|
|
|
|
|
|
: between? ( x min max -- ? )
|
|
|
|
#! Push if min <= x <= max. Handles case where min > max
|
|
|
|
#! by swapping them.
|
2005-08-12 18:02:03 -04:00
|
|
|
2dup > [ swap ] when >r dupd max r> min = ; foldable
|
2004-12-18 23:18:32 -05:00
|
|
|
|
2005-05-15 21:17:56 -04:00
|
|
|
: sq dup * ; inline
|
2004-12-18 23:18:32 -05:00
|
|
|
|
2005-05-15 21:17:56 -04:00
|
|
|
: neg 0 swap - ; inline
|
|
|
|
: recip 1 swap / ; inline
|
2004-12-18 23:18:32 -05:00
|
|
|
|
|
|
|
: rem ( x y -- x%y )
|
|
|
|
#! Like modulus, but always gives a positive result.
|
2005-09-24 15:21:17 -04:00
|
|
|
[ mod ] keep over 0 < [ + ] [ drop ] if ; inline
|
2004-12-18 23:18:32 -05:00
|
|
|
|
|
|
|
: sgn ( n -- -1/0/1 )
|
|
|
|
#! Push the sign of a real number.
|
2005-09-24 15:21:17 -04:00
|
|
|
dup 0 = [ drop 0 ] [ 1 < -1 1 ? ] if ; foldable
|
2004-12-18 23:18:32 -05:00
|
|
|
|
2005-09-16 22:47:28 -04:00
|
|
|
GENERIC: abs ( z -- |z| ) foldable
|
|
|
|
GENERIC: absq ( n -- |n|^2 ) foldable
|
2004-07-16 02:26:21 -04:00
|
|
|
|
2004-09-20 21:02:48 -04:00
|
|
|
: align ( offset width -- offset )
|
2005-09-24 15:21:17 -04:00
|
|
|
2dup mod dup 0 number= [ 2drop ] [ - + ] if ; inline
|
2005-01-23 16:47:28 -05:00
|
|
|
|
|
|
|
: (repeat) ( i n quot -- )
|
2005-06-29 19:40:44 -04:00
|
|
|
pick pick >=
|
2005-09-24 15:21:17 -04:00
|
|
|
[ 3drop ] [ [ swap >r call 1+ r> ] keep (repeat) ] if ;
|
2005-06-29 19:40:44 -04:00
|
|
|
inline
|
2005-01-23 16:47:28 -05:00
|
|
|
|
2005-06-29 19:40:44 -04:00
|
|
|
: repeat ( n quot -- | quot: n -- n )
|
|
|
|
#! The loop counter is kept on the stack, and ranges from
|
|
|
|
#! 0 to n-1.
|
2005-01-23 16:47:28 -05:00
|
|
|
0 -rot (repeat) ; inline
|
|
|
|
|
2005-06-29 19:40:44 -04:00
|
|
|
: times ( n quot -- | quot: -- )
|
2005-01-23 16:47:28 -05:00
|
|
|
swap [ >r dup slip r> ] repeat drop ; inline
|
2005-05-05 15:31:57 -04:00
|
|
|
|
2005-05-09 22:34:47 -04:00
|
|
|
: power-of-2? ( n -- ? )
|
|
|
|
dup 0 > [
|
|
|
|
dup dup neg bitand =
|
|
|
|
] [
|
|
|
|
drop f
|
2005-09-24 15:21:17 -04:00
|
|
|
] if ; foldable
|
2005-05-09 22:34:47 -04:00
|
|
|
|
|
|
|
: log2 ( n -- b )
|
|
|
|
#! Log base two for integers.
|
2005-06-09 19:49:31 -04:00
|
|
|
dup 0 <= [
|
2005-05-28 20:52:23 -04:00
|
|
|
"Input must be positive" throw
|
|
|
|
] [
|
2005-09-24 15:21:17 -04:00
|
|
|
dup 1 = [ drop 0 ] [ 2 /i log2 1+ ] if
|
|
|
|
] if ; foldable
|
2005-08-31 21:06:13 -04:00
|
|
|
|
|
|
|
GENERIC: number>string ( str -- num ) foldable
|