packages feed

csp-1.3: csp.cabal

Name:                csp
Version:             1.3
Description:         Constraint satisfaction problem (CSP) solvers
License:             LGPL
License-file:        LICENSE
Author:              Andrei Barbu <andrei@0xab.com>
Maintainer:          Andrei Barbu <andrei@0xab.com>
Category:            Control, AI, Constraints, Failure, Monads
Build-Type:          Simple
cabal-version:       >= 1.10
synopsis:
    Discrete constraint satisfaction problem (CSP) solver.
extra-source-files:  README.md

source-repository head
  type: git
  location: http://github.com/abarbu/csp-haskell

Library
  Build-Depends:     base >= 3 && < 5, mtl >= 2, containers, nondeterminism >= 1.4
  Exposed-modules:
                     Control.Monad.CSP
  ghc-options:       -Wall
  Hs-Source-Dirs:    src
  default-extensions: CPP
  default-language:    Haskell2010

test-suite tests
  type:           exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is:        test.hs
  build-depends:  base >= 4 && < 5, tasty, tasty-hunit, nondeterminism, csp
  default-language:    Haskell2010