factor/basis/random/random.factor

120 lines
3.3 KiB
Factor
Raw Normal View History

2008-03-19 17:18:03 -04:00
! Copyright (C) 2008 Doug Coleman.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
USING: accessors alien.c-types alien.data arrays assocs
byte-arrays byte-vectors combinators fry io.backend io.binary
kernel locals math math.bitwise math.constants math.functions
2011-10-14 21:52:41 -04:00
math.order math.ranges namespaces sequences sequences.private
sets summary system vocabs hints typed ;
2007-09-20 18:09:08 -04:00
IN: random
SYMBOL: system-random-generator
2008-03-27 07:27:36 -04:00
SYMBOL: secure-random-generator
SYMBOL: random-generator
GENERIC# seed-random 1 ( tuple seed -- tuple' )
GENERIC: random-32* ( tuple -- r )
2008-03-27 07:30:59 -04:00
GENERIC: random-bytes* ( n tuple -- byte-array )
2008-03-27 07:27:36 -04:00
M: object random-bytes* ( n tuple -- byte-array )
[ [ <byte-vector> ] keep 4 /mod ] dip
[ pick '[ _ random-32* int <ref> _ push-all ] times ]
[
over zero?
[ 2drop ] [ random-32* int <ref> swap head append! ] if
] bi-curry bi* B{ } like ;
HINTS: M\ object random-bytes* { fixnum object } ;
2008-03-27 07:27:36 -04:00
M: object random-32* ( tuple -- r ) 4 swap random-bytes* be> ;
2008-03-27 07:27:36 -04:00
ERROR: no-random-number-generator ;
2008-03-29 15:50:52 -04:00
M: no-random-number-generator summary
drop "Random number generator is not defined." ;
2008-03-27 07:27:36 -04:00
M: f random-bytes* ( n obj -- * ) no-random-number-generator ;
M: f random-32* ( obj -- * ) no-random-number-generator ;
2008-03-27 07:27:36 -04:00
2011-10-14 21:52:41 -04:00
: random-32 ( -- n ) random-generator get random-32* ;
TYPED: random-bytes ( n: fixnum -- byte-array: byte-array )
random-generator get random-bytes* ; inline
2007-09-20 18:09:08 -04:00
<PRIVATE
2011-10-14 21:52:41 -04:00
: (random-integer) ( bits -- n required-bits )
[ random-32 32 ] dip 32 - [ dup 0 > ] [
[ 32 shift random-32 + ] [ 32 + ] [ 32 - ] tri*
] while drop ;
: random-integer ( n -- n' )
2011-10-14 21:52:41 -04:00
dup next-power-of-2 log2 (random-integer)
[ * ] [ 2^ /i ] bi* ;
PRIVATE>
: random-bits ( numbits -- r ) 2^ random-integer ;
: random-bits* ( numbits -- n )
1 - [ random-bits ] keep set-bit ;
2008-10-05 23:08:13 -04:00
GENERIC: random ( obj -- elt )
M: integer random [ f ] [ random-integer ] if-zero ;
M: sequence random
2008-09-06 20:13:59 -04:00
[ f ] [
[ length random-integer ] keep nth
2008-09-06 20:13:59 -04:00
] if-empty ;
2007-09-20 18:09:08 -04:00
2011-10-14 21:52:41 -04:00
: randomize-n-last ( seq n -- seq )
[ dup length dup ] dip - 1 max '[ dup _ > ]
[ [ random ] [ 1 - ] bi [ pick exchange-unsafe ] keep ]
while drop ;
2008-12-18 01:15:07 -05:00
: randomize ( seq -- randomized )
dup length randomize-n-last ;
2009-09-23 13:04:06 -04:00
ERROR: too-many-samples seq n ;
2009-09-23 13:04:06 -04:00
: sample ( seq n -- seq' )
2dup [ length ] dip < [ too-many-samples ] when
[ [ length iota >array ] dip [ randomize-n-last ] keep tail-slice* ]
[ drop ] 2bi nths ;
2009-09-23 13:04:06 -04:00
: delete-random ( seq -- elt )
2009-10-28 00:41:57 -04:00
[ length random-integer ] keep [ nth ] 2keep remove-nth! drop ;
2008-03-19 22:41:39 -04:00
2008-03-19 17:18:03 -04:00
: with-random ( tuple quot -- )
2008-03-19 22:41:39 -04:00
random-generator swap with-variable ; inline
2008-03-28 23:10:01 -04:00
: with-system-random ( quot -- )
system-random-generator get swap with-random ; inline
2008-03-28 23:10:01 -04:00
: with-secure-random ( quot -- )
secure-random-generator get swap with-random ; inline
: uniform-random-float ( min max -- n )
4 random-bytes uint deref >float
4 random-bytes uint deref >float
2009-05-06 18:26:21 -04:00
2.0 32 ^ * +
[ over - 2.0 -64 ^ * ] dip
* + ; inline
: (cos-random-float) ( -- n )
0. 2. pi * uniform-random-float cos ;
: (log-sqrt-random-float) ( -- n )
0. 1. uniform-random-float log -2. * sqrt ;
: normal-random-float ( mean sigma -- n )
(cos-random-float) (log-sqrt-random-float) * * + ;
{
{ [ os windows? ] [ "random.windows" require ] }
{ [ os unix? ] [ "random.unix" require ] }
} cond
"random.mersenne-twister" require