packages feed

scubature-1.1.0.0: scubature.cabal

cabal-version:      >=1.10
name:               scubature
version:            1.1.0.0
license:            GPL-3
license-file:       LICENSE
copyright:          2022 Stéphane Laurent
maintainer:         laurent_step@outlook.fr
author:             Stéphane Laurent
homepage:           https://github.com/stla/scubature#readme
synopsis:           Multidimensional integration over simplices
description:
    This library allows to evaluate integrals over Euclidean and spherical simplices.

category:           Numeric, Integration
build-type:         Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
    type:     git
    location: https://github.com/stla/scubature

library
    exposed-modules:
        Numeric.Integration.SimplexCubature
        Numeric.Integration.SphericalSimplexCubature
        Numeric.Integration.IntegratePolynomialOnSimplex

    hs-source-dirs:   src
    other-modules:
        Numeric.Integration.SimplexCubature.Internal
        Numeric.Integration.Simplex.Simplex
        Numeric.Integration.SphericalSimplexCubature.Internal

    default-language: Haskell2010
    other-extensions: BangPatterns DuplicateRecordFields
    ghc-options:      -Wall
    build-depends:
        base >=4.7 && <5,
        array >=0.5.4.0,
        vector >=0.12.3.1,
        matrix >=0.3.6.1,
        containers >=0.6.4.1,
        ilist >=0.4.0.1,
        hspray >=0.1.1.0,
        numeric-prelude >=0.4.4