File: tree-monad.cabal

package info (click to toggle)
haskell-tree-monad 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 68 kB
  • sloc: haskell: 63; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 1,066 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
cabal-version:       >=1.10

name:                tree-monad
version:             0.3.2
synopsis:            Non-Determinism Monad for Tree Search
description:         This Haskell library provides an implementation of the
                     MonadPlus type class that represents the search space
                     as a tree whose constructors represent mzero, return,
                     and mplus.
homepage:            http://sebfisch.github.com/tree-monad
bug-reports:         https://github.com/nbun/tree-monad/issues
license:             BSD3
license-file:        LICENSE
author:              Sebastian Fischer
maintainer:          nbu@informatik.uni-kiel.de
category:            Control, Monads
build-type:          Simple
extra-source-files:  CHANGELOG.md, README

library
  exposed-modules:     Control.Monad.SearchTree
  other-extensions:    Rank2Types
  build-depends:       base >=4.13 && <4.16.3
  default-language:    Haskell2010
  ghc-options:         -Wall

source-repository head
  type:     git
  location: git://github.com/nbun/tree-monad.git