packages feed

gamma-0.10.0.0: gamma.cabal

name:                   gamma
version:                0.10.0.0
stability:              provisional

cabal-version:          >= 1.10
build-type:             Simple

author:                 James Cook <mokus ΑΤ deepbondi dοt net>
maintainer:             James Cook <mokus ΑΤ deepbondi dοt net>,
                        Alexandre Rodrigues Baldé <alexandrer_b ΑΤ outlook dοt com>
license:                PublicDomain
homepage:               https://github.com/rockbmb/gamma2
bug-reports:            https://github.com/rockbmb/gamma2/issues

category:               Math, Numerical
synopsis:               Gamma function and related functions.
description:            Approximations of the gamma function, incomplete gamma
                        functions, generalized gamma functions, and factorials.

tested-with:            GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.1

extra-source-files:     extras/*.hs,
                        CHANGES.md,
                        README.md

source-repository head
  type: git
  location: git://github.com/rockbmb/gamma2.git

library
  hs-source-dirs:       src
  ghc-options:          -Wall
  exposed-modules:      Math.Factorial
                        Math.Gamma
                        Math.Gamma.Incomplete
                        Math.Gamma.Stirling
                        Math.Gamma.Lanczos
  build-depends:        base >= 4.9 && <5,
                        continued-fractions >= 0.10,
                        converge,
                        template-haskell,
                        vector >= 0.5
  default-language: Haskell2010

test-suite gamma-tests
  ghc-options:          -threaded
  hs-source-dirs:       test-suite
  default-language:     Haskell2010
  ghc-options:          -Wall
  type:                 exitcode-stdio-1.0
  main-is:              Test.hs
  build-depends:
    base >= 4.9 && <5,
    erf,
    gamma,
    numbers,
    QuickCheck >= 2.1.1,
    test-framework,
    test-framework-quickcheck2
  other-modules:
    Math.GammaTests
    Math.IncGammaTests
    Math.Reference