Define a random stream by a distribution and the state of a
random number stream with uniform distribution in [0, 1).
(deftype ::random-stream random-stream
"Define a random stream by a distribution and the state of a
random number stream with uniform distribution in [0, 1)."
{:arglists '([distribution random-stream-state])}
(fn [d rs] (list d rs)))
Comments top
No comments for random-stream. Log in to add a comment.