-
Notifications
You must be signed in to change notification settings - Fork 0
/
logic-translation.cabal
56 lines (52 loc) · 1.15 KB
/
logic-translation.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
cabal-version: 3.0
name: logic-translation
version: 0.0.1
synopsis: Translation from FOL to LTL+Past and LTL, via separation of LTL+Past
category: Logic
homepage: https://github.com/drdo/logic-translation#readme
bug-reports: https://github.com/drdo/logic-translation/issues
maintainer: Daniel Rebelo de Oliveira <drdo@drdo.eu>
license: LGPL-3.0-only
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/drdo/logic-translation
library
exposed-modules:
BooleanCombination
TL
FOMLO
Parse
Pretty
Separation
Translation
other-modules:
Util
hs-source-dirs:
library
build-depends:
base >=4.8 && <5
, bytestring
, containers
, deepseq
, parsec
, pretty
, text
, utf8-string
default-language: GHC2021
executable logic-translation
main-is: Main.hs
hs-source-dirs:
executable
build-depends:
base >=4.8 && <5
, bytestring
, containers
, deepseq
, logic-translation
, parsec
, pretty
, text
, utf8-string
default-language: GHC2021