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 30
|
cabal-version: >=1.10
name: parallel-tree-search
version: 0.4.2
x-revision: 1
synopsis: Parallel Tree Search
description: This Haskell library provides an implementation of parallel
search based on the search tree provided by the package
tree-monad.
homepage: https://github.com/nbun/parallel-tree-search
bug-reports: https://github.com/nbun/parallel-tree-search/issues
license: PublicDomain
license-File: LICENSE
author: Fabian Reck, Sebastian Fischer
maintainer: nbu@informatik.uni-kiel.de
category: Control, Concurrency
build-Type: Simple
extra-Source-Files: CHANGELOG.md, README
library
exposed-modules: Control.Parallel.TreeSearch
build-depends: base >= 4.13.0 && < 4.16,
parallel >= 3.2.2 && < 3.3,
tree-monad >= 0.3.1 && < 0.4
default-language: Haskell2010
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/nbun/parallel-tree-search.git
|