----------------------------------------------------------------------------- -- | -- Module : Control.Monad.MC.GSL -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- module Control.Monad.MC.GSL ( -- * The Monte Carlo monad MC, runMC, evalMC, execMC, -- * The Monte Carlo monad transformer MCT, runMCT, evalMCT, execMCT, -- * Pure random number generator creation RNG, mt19937, -- * Overloaded Monte Carlo monad interface module Control.Monad.MC.Class, ) where import Control.Monad.MC.GSLBase ( MC, runMC, evalMC, execMC, MCT, runMCT, evalMCT, execMCT, RNG, mt19937 ) import Control.Monad.MC.Class hiding ( RNG )