packages feed

species-0.3.2.3: species.cabal

name:           species
version:        0.3.2.3
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
tested-with:    GHC == 7.4.2, GHC == 7.6.1
author:         Brent Yorgey
maintainer:     Brent Yorgey <byorgey@cis.upenn.edu>
bug-reports:    http://hub.darcs.net/byorgey/species/issues
category:       Math
synopsis:       Computational combinatorial species

description:    A DSL for describing and computing with combinatorial species,
                e.g. counting labeled or unlabeled structures, or generating
                a list of all labeled structures for a species.
homepage:       http://www.cis.upenn.edu/~byorgey/species
extra-source-files: CHANGES
source-repository head
  type:     darcs
  location: http://hub.darcs.net/byorgey/species

Library
  build-depends: base >= 3 && < 4.7,
                 numeric-prelude >= 0.3 && < 0.4,
                 np-extras >= 0.3 && < 0.4,
                 containers >= 0.2 && < 0.6,
                 multiset-comb >= 0.2.3 && < 0.3,
                 template-haskell >= 2.7 && < 2.9
  exposed-modules:
    Math.Combinatorics.Species
    Math.Combinatorics.Species.Class
    Math.Combinatorics.Species.Types
    Math.Combinatorics.Species.Labeled
    Math.Combinatorics.Species.Unlabeled
    Math.Combinatorics.Species.CycleIndex
    Math.Combinatorics.Species.AST
    Math.Combinatorics.Species.AST.Instances
    Math.Combinatorics.Species.Structures
    Math.Combinatorics.Species.Enumerate
    Math.Combinatorics.Species.TH
    Math.Combinatorics.Species.Util.Interval
    Math.Combinatorics.Species.NewtonRaphson
    Math.Combinatorics.Species.Simplify
  default-extensions: NoImplicitPrelude
  other-extensions: GADTs,
                    TemplateHaskell,
                    DeriveDataTypeable,
                    CPP
  default-language: Haskell2010