random-variates-0.1.0.0: "Uniform RNG => Non-Uniform RNGs"
Stochastic.Distribution
class ContinuousDistribution g where Source
Minimal complete definition
randDouble
Methods
randDouble :: g -> (Double, g) Source
randDoubles :: Int -> g -> ([Double], g) Source
Instances
class DiscreteDistribution g where Source
Nothing
randInt :: g -> (Int, g) Source
randInts :: Int -> g -> ([Int], g) Source
randIntIn :: (Int, Int) -> g -> (Int, g) Source