factor/library/math/math.factor

97 lines
2.6 KiB
Factor
Raw Normal View History

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