Index.html
Documentation for package :random
Author: R. Scott McIntire
Version: 1.0
Overview
This package provides a high quality random number generator. RESTRICTION: Only works on Allegro Common Lisp on Windows. Function summary: b-rand: Produces a uniform binary random number. That is its values are 0 or 1. u-rand: Produces a uniform random number (double-float) on the interval [0,1). i-rand: Produce a random number on the interval [0, min(2^32, most-positive-fixnum)). init : Initialize the random number generator. set-rand: Set the seed of the random number generator.(takes one arg, a fixnum).
b-rand   
(&rest args)
nil
i-rand   
nil
Return a uniform random number on the interval [0, min(2^32, most-positive-fixnum)).
init   
(x)
nil
set-seed   
(seed)
should be a fixnum.
u-rand   
(&rest args)
nil
Index.html