----------------------------------------------------------------------------- -- | -- Module : Control.Monad.MC.Class -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- module Control.Monad.MC.Class ( -- * The Monte Carlo monad type class HasRNG(..), MonadMC, -- * Getting and setting the generator getRNG, setRNG, -- * Random distributions uniform, uniformInt, normal, poisson, module Control.Monad.MC.Sample, module Control.Monad.MC.Repeat, -- * Interleaving computations unsafeInterleaveMC ) where import Control.Monad.MC.Base import Control.Monad.MC.Sample import Control.Monad.MC.Repeat