@hackage generic-random0.1.0.0
Generic random generators
Installation
Dependencies (12)
- MonadRandom
- QuickCheck
- ad
- base >=4.8 && <4.9
- containers
- hashable Show all…
Dependents (56)
@hackage/multilinear, @cardano/hydra-prelude, @hackage/binrep, @cardano/ouroboros-consensus-shelley-test, @cardano/cardano-ledger-core, @cardano/ouroboros-consensus-cardano, Show all…
Generic random generators
Define sized random generators for almost any type.
{-# LANGUAGE DeriveDataTypeable #-}
import Data.Data
import Test.QuickCheck
import Data.Random.Generics
data Term = Lambda Int Term | App Term Term | Var Int
deriving (Show, Data)
instance Arbitrary Term where
arbitrary = sized $ generatorPWith [positiveInts]
positiveInts :: Alias Gen
positiveInts =
alias $ \() -> fmap getPositive arbitrary :: Gen Int
main = sample (arbitrary :: Gen Term)
- Objects of the same size (number of constructors) occur with the same probability (see Duchon et al., references below).
- Implements rejection sampling and pointing.
- Works with QuickCheck and MonadRandom.
- Can be extended or modified with user defined generators.
References
-
The core theory of Boltzmann samplers is described in Boltzmann Samplers for the Random Generation of Combinatorial Structures, P. Duchon, P. Flajolet, G. Louchard, G. Schaeffer.
-
The numerical evaluation of recursively defined generating functions is taken from Boltzmann Oracle for Combinatorial Systems, C. Pivoteau, B. Salvy, M. Soria.