forked from jtobin/deanie
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeanie.cabal
93 lines (87 loc) · 2.07 KB
/
deanie.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: deanie
version: 0.1.0
synopsis: An embedded probabilistic programming language.
license: MIT
license-file: LICENSE
author: Jared Tobin
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
description:
An embedded probabilistic programming language.
library
default-language: Haskell2010
hs-source-dirs: lib
default-extensions:
LambdaCase
, RecordWildCards
other-modules:
Control.Applicative.Extended
exposed-modules:
Deanie
, Deanie.Density
, Deanie.Expr
, Deanie.Inference
, Deanie.Inference.Importance
, Deanie.Inference.Metropolis
, Deanie.Inference.Rejection
, Deanie.Language
, Deanie.Measure
, Deanie.RVar
build-depends:
base
, foldl
, free
, integration
, math-functions
, monad-loops
, random-fu
, recursion-schemes
Test-suite betabernoulli-rejection
type: exitcode-stdio-1.0
hs-source-dirs: test
Main-is: BetaBernoulliRejection.hs
default-language: Haskell2010
ghc-options:
-O2 -Wall
other-modules:
Model.BetaBernoulli
build-depends:
base
, deanie
Test-suite betabernoulli-importance
type: exitcode-stdio-1.0
hs-source-dirs: test
Main-is: BetaBernoulliImportance.hs
default-language: Haskell2010
ghc-options:
-O2 -Wall
other-modules:
Model.BetaBernoulli
build-depends:
base
, deanie
Test-suite betabernoulli-metropolis
type: exitcode-stdio-1.0
hs-source-dirs: test
Main-is: BetaBernoulliMetropolis.hs
default-language: Haskell2010
ghc-options:
-O2 -Wall
other-modules:
Model.BetaBernoulli
build-depends:
base
, deanie
Test-suite mixture-importance
type: exitcode-stdio-1.0
hs-source-dirs: test
Main-is: MixtureImportance.hs
default-language: Haskell2010
ghc-options:
-O2 -Wall
other-modules:
Model.Mixture
build-depends:
base
, deanie