dom-lt-0.2.0: dom-lt.cabal
name: dom-lt
version: 0.2.0
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE
category: Algorithms, Graphs
author: Matt Morrow
copyright: (c) Matt Morrow, 2009
maintainer: Andreas Klebinger <klebinger.andreas@gmx.at>
bug-reports: https://github.com/AndreasPK/dom-lt/issues
stability: stable
synopsis: The Lengauer-Tarjan graph dominators algorithm.
description:
The Lengauer-Tarjan graph dominators algorithm.
Included are ways to compute domination and post-domination relationships.
Extra-Source-Files:
Changelog.md
source-repository head
type: git
location: https://github.com/AndreasPK/dom-lt
library
Default-Language: Haskell2010
includes:
build-tools:
extra-libraries:
hs-source-dirs: .
ghc-options: -O2 -funbox-strict-fields
default-extensions: RankNTypes
build-depends: base >= 4.9 && < 5, array, containers >= 0.5
exposed-modules: Data.Graph.Dom
test-suite dom-lt-tests
Default-Language: Haskell2010
type: exitcode-stdio-1.0
Main-Is: Main.hs
hs-source-dirs: tests
Build-Depends: base, dom-lt, containers
default-extensions:
Ghc-Options: -Wall
benchmark dom-lt-bench
Default-Language: Haskell2010
type: exitcode-stdio-1.0
Main-Is: Main.hs
hs-source-dirs: benchmarks
Build-Depends: base, dom-lt, containers, criterion >= 1.4, deepseq
default-extensions:
Ghc-Options: -O2 -fno-full-laziness