mcmc-0.2.1: Sample from a posterior using Markov chain Monte Carlo

Copyright(c) Dominik Schrempf 2020
LicenseGPL-3.0-or-later
Maintainerdominik.schrempf@gmail.com
Stabilityunstable
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Mcmc.Verbosity

Description

Creation date: Sat Jun 27 10:49:28 2020.

Synopsis

Documentation

data Verbosity Source #

Not much to say here.

Constructors

Quiet 
Warn 
Info 
Debug 

warn :: Applicative m => Verbosity -> m () -> m () Source #

Perform action if Verbosity is Warn or higher.

info :: Applicative m => Verbosity -> m () -> m () Source #

Perform action if Verbosity is Info or higher.

debug :: Applicative m => Verbosity -> m () -> m () Source #

Perform action if Verbosity is Debug.