packages feed

random-fu-multivariate-0.1.1.1: random-fu-multivariate.cabal

name:                random-fu-multivariate
version:             0.1.1.1
synopsis:            Multivariate distributions for random-fu
description:         Please see README.md
homepage:            https://github.com/fpco/random-fu-multivariate
license:             BSD3
license-file:        LICENSE
author:              Dominic Steinitz, Jacob West
maintainer:          dominic@steinitz.org
copyright:           (c) 2016 FP Complete Corporation
category:            Math
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md, diagrams/*.svg
extra-doc-files:     diagrams/*.svg

source-repository head
  type:     git
  location: https://github.com/fpco/random-fu-multivariate

library
  default-language:  Haskell2010
  hs-source-dirs:    src
  exposed-modules:   Data.Random.Distribution.MultivariateNormal
                   , Data.Random.Distribution.Static.MultivariateNormal
                   , Data.Random.Distribution.MultiNormal
  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