Lévy distribution functions.
This package builds on MonadRandom and random.
import System.Random (newStdGen)
import Control.Monad.Random
test :: IO ()
test = do
gen <- newStdGen
let x = evalRandT (sampleLevy 0.0 0.5) gen :: Maybe Double
putStrLn $ show x
This package is built with nix, a default.nix
file is included for your convenience.