-
Notifications
You must be signed in to change notification settings - Fork 5
/
random-fu-multivariate.cabal
40 lines (37 loc) · 1.41 KB
/
random-fu-multivariate.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
name: random-fu-multivariate
version: 0.1.2.1
synopsis: Multivariate distributions for random-fu
description: Please see README.md
homepage: https://github.com/idontgetoutmuch/random-fu-multivariate
license: BSD3
license-file: LICENSE
author: Dominic Steinitz, Jacob West
maintainer: [email protected]
copyright: (c) 2016 FP Complete Corporation
category: Math
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
-- extra-source-files: README.md, diagrams/*.svg
-- extra-doc-files: diagrams/*.svg
source-repository head
type: git
location: https://github.com/idontgetoutmuch/random-fu-multivariate
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Data.Random.Distribution.MultivariateNormal
, Data.Random.Distribution.Static.MultivariateNormal
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, random-fu
, hmatrix
, mtl
test-suite random-fu-multivariate-test
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.7 && < 5
, random-fu-multivariate