-
Notifications
You must be signed in to change notification settings - Fork 2
/
mwc-probability-transition.cabal
53 lines (50 loc) · 2.02 KB
/
mwc-probability-transition.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: mwc-probability-transition
version: 0.4
synopsis: A Markov stochastic transition operator with logging
description:
.
This package provides a 'Transition' type that is useful for modelling (and debugging) stochastic transition kernels (used in e.g. the integration of SDEs, Markov chain Monte Carlo algorithms etc.).
.
It wraps the compositional random sampling functionality of `mwc-probability` and offers structured logging via `logging-effect`.
homepage: https://github.com/ocramz/mwc-probability-transition
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: zocca.marco gmail
copyright: 2018 Marco Zocca
category: Numeric, Random, Science, Scientific Simulation, Statistical Modeling, Statistics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.2.2
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: System.Random.MWC.Probability.Transition
build-depends: base >= 4.7 && < 5
, exceptions
, ghc-prim
, logging-effect
, mtl
, mwc-probability
, primitive
, transformers
-- * DEBUG
, hspec
, QuickCheck
test-suite spec
default-language: Haskell2010
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: LibSpec.hs
build-depends: base
, logging-effect
, mwc-probability
, mwc-probability-transition
, hspec
, QuickCheck
source-repository head
type: git
location: https://github.com/ocramz/mwc-probability-transition