-
Notifications
You must be signed in to change notification settings - Fork 1
/
ons-hs.cabal
121 lines (111 loc) · 2.47 KB
/
ons-hs.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
118
119
120
121
cabal-version: 2.2
name: ons-hs
version: 0.4.0.0-dev
synopsis: Implementation of the ONS (Ordered Nominal Sets) library in Haskell
description: Nominal sets are structured infinite sets. They have symmetries which make them finitely representable. This library provides basic manipulation of them for the total order symmetry. It includes: products, sums, maps and sets. Can work with custom data types.
homepage: https://github.com/Jaxan/ons-hs
license: EUPL-1.2
license-file: LICENSE
author: Joshua Moerman
maintainer: [email protected]
copyright: (c) 2017-2024 Joshua Moerman
build-type: Simple
extra-source-files: README.md
common stuff
build-depends:
base >= 4.17 && < 5,
containers
default-language: Haskell2010
library
import: stuff
hs-source-dirs: src
exposed-modules:
Automata,
EquivariantMap,
EquivariantSet,
Nominal,
Nominal.Atom,
Nominal.Class,
Nominal.Products,
Nominal.Support,
OrbitList,
Permutable,
Quotient
build-depends:
data-ordlist,
MemoTrie
executable ons-hs-solver
import: stuff
hs-source-dirs: app
main-is: FoSolver.hs
build-depends: ons-hs
executable ons-hs-lstar
import: stuff
hs-source-dirs: app
main-is: LStar.hs
build-depends:
mtl,
ons-hs
other-modules:
ExampleAutomata,
IO
executable ons-hs-lstar-perm
import: stuff
hs-source-dirs: app
main-is: LStarPerm.hs
build-depends:
mtl,
ons-hs
other-modules:
ExampleAutomata,
IO
executable ons-hs-teacher
import: stuff
hs-source-dirs: app
main-is: Teacher.hs
build-depends:
mtl,
ons-hs
other-modules:
ExampleAutomata,
IO
executable ons-hs-minimise
import: stuff
hs-source-dirs: app
main-is: Minimise.hs
build-depends:
megaparsec,
mtl,
ons-hs,
parser-combinators
other-modules:
ExampleAutomata,
FileAutomata,
IO
benchmark ons-hs-bench
import: stuff
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Bench.hs
build-depends:
deepseq,
ons-hs,
tasty-bench
test-suite ons-hs-test
import: stuff
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
SpecMap,
SpecPermutable,
SpecSet,
SpecUtils
build-depends:
ons-hs,
tasty,
tasty-hunit,
tasty-quickcheck
source-repository head
type: git
location: https://github.com/Jaxan/ons-hs