-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnominal-lstar.cabal
71 lines (65 loc) · 1.38 KB
/
nominal-lstar.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
cabal-version: 2.2
name: nominal-lstar
version: 0.1.1.0
author: Joshua Moerman
copyright: (c) 2016 - 2024, Joshua Moerman
build-type: Simple
extra-source-files: README.md
common stuff
default-language: Haskell2010
ghc-options: -O2 -Wall
build-depends:
base >= 4.8 && < 5,
haskeline,
NLambda >= 1.1.3
library
import: stuff
hs-source-dirs: src
exposed-modules:
AbstractLStar,
Angluin,
Bollig,
BooleanObservationTable,
Examples,
Examples.Contrived,
Examples.ContrivedNFAs,
Examples.Fifo,
Examples.NonResidual,
Examples.Residual,
Examples.RunningExample,
Examples.Stack,
ObservationTableClass,
SimpleObservationTable,
Teacher,
Teachers.Teacher,
Teachers.Terminal,
Teachers.Whitebox
executable nominal-lstar
import: stuff
hs-source-dirs: app
main-is: Main.hs
build-depends:
nominal-lstar
executable nominal-lstar2
import: stuff
hs-source-dirs: app
main-is: Main2.hs
build-depends:
nominal-lstar
benchmark bench
import: stuff
hs-source-dirs: bench
type: exitcode-stdio-1.0
main-is: Bench.hs
build-depends:
tasty-bench,
nominal-lstar
test-suite test
import: stuff
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
tasty,
tasty-hunit,
nominal-lstar