-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdecision-diagrams.cabal
117 lines (111 loc) · 3.23 KB
/
decision-diagrams.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
name: decision-diagrams
version: 0.3.0.0
synopsis: Binary Decision Diagrams (BDD) and Zero-suppressed Binary Decision Diagrams (ZDD)
description: Please see the README on GitHub at <https://github.com/msakai/haskell-decision-diagrams#readme>
category: Data, Data Structures, Logic, Formal Methods
homepage: https://github.com/msakai/haskell-decision-diagrams#readme
bug-reports: https://github.com/msakai/haskell-decision-diagrams/issues
author: Masahiro Sakai
maintainer: masahiro.sakai@gmail.com
copyright: 2021 Masahiro Sakai
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/msakai/haskell-decision-diagrams
library
exposed-modules:
Data.DecisionDiagram.BDD
Data.DecisionDiagram.BDD.Internal.ItemOrder
Data.DecisionDiagram.ZDD
other-modules:
Data.DecisionDiagram.BDD.Internal.Node
hs-source-dirs:
src
other-extensions:
BangPatterns
FlexibleContexts
FlexibleInstances
RankNTypes
ScopedTypeVariables
CPP
DeriveGeneric
DeriveTraversable
GeneralizedNewtypeDeriving
PatternSynonyms
TypeFamilies
UndecidableInstances
ViewPatterns
build-depends:
base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.8
, hashable >=1.2.7.0 && <1.6
, hashtables >=1.2.3.1 && <1.4
, intern >=0.9.1.2 && <1.0.0.0
, mwc-random >=0.13.6.0 && <0.16
, primitive >=0.6.3.0 && <0.10
, random >=1.1 && <1.3
, reflection >=2.1.4 && <2.2
, unordered-containers >=0.2.9.0 && <0.3
, vector >=0.12.0.2 && <0.14
default-language: Haskell2010
test-suite decision-diagrams-doctest
type: exitcode-stdio-1.0
main-is: test/doctests.hs
other-modules:
Paths_decision_diagrams
other-extensions:
BangPatterns
FlexibleContexts
FlexibleInstances
RankNTypes
ScopedTypeVariables
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.8
, decision-diagrams
, doctest
, mwc-random >=0.13.6.0 && <0.16
default-language: Haskell2010
test-suite decision-diagrams-test
type: exitcode-stdio-1.0
main-is: TestSuite.hs
other-modules:
TestBDD
TestZDD
Utils
Paths_decision_diagrams
hs-source-dirs:
test
other-extensions:
BangPatterns
FlexibleContexts
FlexibleInstances
RankNTypes
ScopedTypeVariables
TemplateHaskell
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck >=2.11.3 && <2.16
, base >=4.11.0.0 && <5
, containers >=0.5.11.0 && <0.8
, decision-diagrams
, deepseq >=1.4.3.0 && <1.6
, mwc-random >=0.13.6.0 && <0.16
, quickcheck-instances >=0.3.19 && <0.4
, statistics >=0.14.0.2 && <0.17
, tasty >=1.1.0.4 && <1.6
, tasty-hunit >=0.10.0.1 && <0.11
, tasty-quickcheck >=0.10 && <0.12
, tasty-th >=0.1.7 && <0.2
, vector >=0.12.0.2 && <0.14
default-language: Haskell2010