dawg-0.3.0: dawg.cabal
name: dawg
version: 0.3.0
synopsis: Directed acyclic word graphs
description:
The library implements /directed acyclic word graphs/ (DAWGs), which can
be also interpreted as /minimal acyclic finite-state automata/.
.
In most cases you can use the "Data.DAWG" module which provides the basic
implementation of DAWGs. If values have substantial memory footprint
consider using the "Data.DAWG.Wrapper" module instead.
license: BSD3
license-file: LICENSE
cabal-version: >= 1.6
copyright: Copyright (c) 2012 IPI PAN
author: Jakub Waszczuk
maintainer: waszczuk.kuba@gmail.com
stability: experimental
category: Data, Data Structures
homepage: https://github.com/kawu/dawg
build-type: Simple
library
build-depends:
base >= 4 && < 5
, containers
, binary
, vector
, vector-binary
, mtl
, monad-codec >= 0.2 && < 0.3
exposed-modules:
Data.DAWG
, Data.DAWG.Wrapper
, Data.DAWG.Graph
, Data.DAWG.VMap
ghc-options: -Wall -O2
source-repository head
type: git
location: https://github.com/kawu/dawg.git