packages feed

pcubature-0.2.0.0: pcubature.cabal

cabal-version:       2.2

name:                pcubature
version:             0.2.0.0
synopsis:            Integration over convex polytopes
description:         Multiple integration over convex polytopes.
homepage:            https://github.com/stla/pcubature#readme
license:             GPL-3.0-only
license-file:        LICENSE
author:              Stéphane Laurent
maintainer:          laurent_step@outlook.fr
copyright:           2023-2024 Stéphane Laurent
category:            Numeric, Integration
build-type:          Simple
extra-source-files:  README.md
extra-doc-files:     CHANGELOG.md

library
  hs-source-dirs:      src
  exposed-modules:     Numeric.Integration.PolyhedralCubature
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.6.5.1 && < 0.7
                     , delaunayNd >= 0.1.0.2 && < 0.2
                     , hspray >= 0.1.0.0 && < 0.5.3
                     , numeric-prelude >= 0.4.4 && < 0.5
                     , scubature >= 1.1.0.0 && < 1.2
                     , vector >= 0.12.3 && < 0.14
                     , vertexenum >= 1.0.0.0 && < 1.1
  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wmissing-export-lists
                       -Wmissing-home-modules
                       -Wpartial-fields
                       -Wredundant-constraints

test-suite unit-tests
  type:                 exitcode-stdio-1.0
  main-is:              Main.hs
  hs-source-dirs:       tests/
  Build-Depends:        base >= 4.7 && < 5
                      , tasty >= 1.4 && < 1.5
                      , tasty-hunit >= 0.10 && < 0.11
                      , hspray >= 0.1.0.0 && < 0.5.3
                      , pcubature
  Default-Language:     Haskell2010
  ghc-options:         -Wall
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wmissing-export-lists
                       -Wmissing-home-modules
                       -Wpartial-fields
                       -Wredundant-constraints

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