packages feed

jackpolynomials-1.4.2.0: jackpolynomials.cabal

name:                jackpolynomials
version:             1.4.2.0
synopsis:            Jack, zonal, Schur and skew Schur polynomials
description:         This library can compute Jack polynomials, zonal polynomials, Schur and skew Schur polynomials. It also provides some utilities for symmetric polynomials.
homepage:            https://github.com/stla/jackpolynomials#readme
license:             GPL-3
license-file:        LICENSE
author:              Stéphane Laurent
maintainer:          laurent_step@outlook.fr
copyright:           2022-2024 Stéphane Laurent
category:            Math, Algebra
build-type:          Simple
extra-source-files:  README.md
                     CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Math.Algebra.Jack.HypergeoPQ
                     , Math.Algebra.SymmetricPolynomials
                     , Math.Algebra.Jack
                     , Math.Algebra.JackPol
                     , Math.Algebra.JackSymbolicPol
  other-modules:       Math.Algebra.Jack.Internal
  build-depends:       base >= 4.7 && < 5
                     , ilist >= 0.4.0.1 && < 0.4.1
                     , array >= 0.5.4.0 && < 0.6
                     , lens >= 5.0.1 && < 5.3
                     , hspray >= 0.5.0.0 && < 0.6.0.0
                     , numeric-prelude >= 0.4.4 && < 0.5
                     , combinat >= 0.2.10 && < 0.3
                     , containers >= 0.6.4.1 && < 0.8
                     , unordered-containers >= 0.2.17.0 && < 0.3
                     , extra >= 1.7 && < 1.8
                     , matrix >= 0.3.6.0 && < 0.4
                     , vector >= 0.10.0 && < 0.13.2
  other-extensions:    ScopedTypeVariables
                     , BangPatterns
                     , FlexibleContexts
  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.6
                      , tasty-hunit >= 0.10 && < 0.11
                      , jackpolynomials
                      , hspray >= 0.5.0.0 && < 0.6.0.0
                      , hypergeomatrix >= 1.1.0.2 && < 2
                      , combinat >= 0.2.10 && < 0.3
                      , containers >= 0.6.4.1 && < 0.8
                      , numeric-prelude >= 0.4.4 && < 0.5
  Default-Language:     Haskell2010
  ghc-options:         -Wall
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wmissing-home-modules
                       -Wpartial-fields
                       -Wredundant-constraints

benchmark benchmarks
  type:                 exitcode-stdio-1.0
  main-is:              Main.hs
  hs-source-dirs:       benchmarks/
  Build-Depends:        base >= 4.7 && < 5
                      , miniterion >= 0.1.1.0 && < 0.2
                      , jackpolynomials
                      , hspray >= 0.5.0.0 && < 0.6.0.0
  Default-Language:     Haskell2010
  ghc-options:         -Wall
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
                       -Wmissing-home-modules
                       -Wpartial-fields
                       -Wredundant-constraints

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