-
Notifications
You must be signed in to change notification settings - Fork 1
/
adp-multi-monadiccp.cabal
92 lines (87 loc) · 3.31 KB
/
adp-multi-monadiccp.cabal
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: adp-multi-monadiccp
version: 0.2.1
cabal-version: >=1.8
build-type: Simple
author: Maik Riechert
stability: experimental
bug-reports: https://github.com/adp-multi/adp-multi-monadiccp/issues
homepage: http://adp-multi.ruhoh.com
copyright: Maik Riechert, 2013
license: BSD3
license-file: LICENSE
tested-with:
GHC==7.4.1,
GHC==7.6.2
maintainer: Maik Riechert
category: Algorithms, Data Structures, Bioinformatics
synopsis: Subword construction in adp-multi using monadiccp
description:
This is an experimental subword construction algorithm
for the adp-multi package. It uses the constraint
programming framework monadiccp with the constraint solver
OvertonFD. It is slower than the built-in algorithm in
adp-multi and serves research purposes.
Use it by importing ADP.Multi.Constraint.All instead
of ADP.Multi.Rewriting.All in your grammar files.
source-repository head
type: git
location: git://github.com/adp-multi/adp-multi-monadiccp.git
Flag buildBenchmark
description: Build benchmark executable
default: False
library
hs-source-dirs: src
build-depends:
base == 4.*,
containers >= 0.4 && < 0.6,
adp-multi >= 0.2.3 && < 0.3,
monadiccp == 0.7.*
ghc-options: -Wall
exposed-modules:
ADP.Multi.Constraint.All,
ADP.Multi.Constraint.Combinators,
ADP.Multi.Constraint.ConstraintSolver
other-modules: ADP.Multi.Constraint.MonadicCpHelper
test-suite Test
type: exitcode-stdio-1.0
x-uses-tf: true
ghc-options: -Wall -rtsopts
build-depends:
base == 4.*,
containers >= 0.4 && < 0.6,
adp-multi == 0.2.*,
monadiccp == 0.7.*,
QuickCheck == 2.5.*,
test-framework == 0.8.*,
test-framework-quickcheck2 == 0.3.*,
mtl >= 2.0 && < 2.2
hs-source-dirs: tests,src
main-is: ADP/Tests/Suite.hs
other-modules:
ADP.Tests.CombinatorsTest,
ADP.Tests.RGExample,
ADP.Tests.RGExampleConstraint,
ADP.Tests.RGExampleExplicit,
Control.CP.MonadicCpExample,
Control.CP.MonadicCpProblems
executable adp-multi-monadiccp-benchmarks
if !flag(buildBenchmark)
buildable: False
else
build-depends:
base == 4.*,
containers >= 0.4 && < 0.6,
adp-multi == 0.2.*,
monadiccp == 0.7.*,
QuickCheck == 2.5.*,
test-framework == 0.8.*,
test-framework-quickcheck2 == 0.3.*,
mtl >= 2.0 && < 2.2,
criterion == 0.6.*,
deepseq >= 1.1.0.0
hs-source-dirs: benchmarks,
tests,
src
ghc-options: -Wall -rtsopts
main-is: Benchmarks.hs
other-modules: Criterion.Helpers