-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbayesian-inference.cabal
108 lines (101 loc) · 3.7 KB
/
bayesian-inference.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: bayesian-inference
version: 0.1.0.0
synopsis: Bayesian inference in Haskell
description: Bayesian inference in Haskell
homepage: https://github.com/ocramz/bayesian-inference
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: zocca.marco gmail
copyright: 2018 Marco Zocca
category: Machine Learning
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.2.2, GHC == 8.4.2
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Numeric.Statistics.Inference.Bayes
Numeric.Statistics.Inference.Bayes.Approximate
Numeric.Statistics.Inference.Bayes.Exact
Numeric.Statistics.Inference.Bayes.Exact.VariableElimination
Numeric.Statistics.Nonparametric
Numeric.Statistics.Utils
Numeric.Statistics.Sampling.MetropolisHastings
Numeric.Math
Data.Graph.Examples
Data.Permutation
Data.Sample
other-modules: System.Random.MWC.Probability.Conditional
build-depends: base >= 4.7 && < 5
, algebraic-graphs
, bimap
, containers
, exceptions
, ghc-prim
, logging-effect
, massiv
-- , microlens
-- , microlens-mtl
, mtl
, mwc-probability
, mwc-probability-transition
, primitive
, sampling
, text
, transformers
, vector
-- DEBUG
, hspec
, QuickCheck
executable stat-rethinking
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: app/stat-rethinking
main-is: Main.hs
build-depends: base
, bayesian-inference
executable graph-export
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, bayesian-inference
, algebraic-graphs
, text
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
, bayesian-inference
, exceptions
, hspec
, QuickCheck
test-suite doctest
default-language: Haskell2010
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: DocTest.hs
-- other-modules: Data.Permutation
build-depends: base
, bayesian-inference
, doctest
, exceptions
-- test-suite property
-- default-language: Haskell2010
-- ghc-options: -Wall
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Property.hs
-- build-depends: base
-- , bayesian-inference
source-repository head
type: git
location: https://github.com/ocramz/bayesian-inference