packages feed

random-hypergeometric-0.1.0.0: random-hypergeometric.cabal

name:                random-hypergeometric
version:             0.1.0.0
synopsis:            Random variate generation from hypergeometric distributions
description:         The Hypergeometric distribution.  This is the discrete probability
                     distribution that measures the probability of /k/ successes in /l/
                     trials, without replacement, from a finite population.
homepage:            https://github.com/srijs/random-hypergeometric
license:             MIT
license-file:        LICENSE
author:              Sam Rijs
maintainer:          srijs@airpost.net
copyright:           2015 Sam Rijs
                     2005 Robert Kern
                     1998 Ivan Frohne
category:            Math
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Data.Random.Distribution.Hypergeometric
  other-modules:       Data.Random.Distribution.Hypergeometric.Impl
  build-depends:       base >=4.7 && <4.8,
                       random-fu >=0.2 && <0.3,
                       math-functions >=0.1 && <0.2
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite test
  type:           detailed-0.9
  test-module:    Data.Random.Distribution.Hypergeometric.Test
  other-modules:  Data.Random.Distribution.Hypergeometric,
                  Data.Random.Distribution.Hypergeometric.Impl
  build-depends:  base                  >=4.7 && <4.8,
                  Cabal                 >=1.10,
                  random-fu             >=0.2 && <0.3,
                  math-functions        >=0.1 && <0.2,
                  mwc-random            >=0.13 && <0.14,
                  vector                >=0.10 && <0.11,
                  QuickCheck            >=2.7 && <2.8,
                  cabal-test-quickcheck >=0.1 && <0.2
  hs-source-dirs: src