-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.yaml
More file actions
147 lines (138 loc) · 2.69 KB
/
package.yaml
File metadata and controls
147 lines (138 loc) · 2.69 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: oppas
version: 3.1.0
synopsis: A tool suite for verifying recursive (probabilistic) programs.
description: >-
OPPAS contains two tools. POMC, for verifying recursive programs,
and POPACheck, for probabilistic programs.
category: Formal methods
author: Davide Bergamaschi, Michele Chiari and Francesco Pontiggia
maintainer: michele.chiari@tuwien.ac.at
copyright: 2020-2025 Davide Bergamaschi, Michele Chiari and Francesco Pontiggia
license: MIT
license-file: COPYING.md
extra-source-files:
- README.md
dependencies:
- base >= 4.11 && < 5
library:
source-dirs: src
exposed-modules:
- Pomc.Check
- Pomc.Opa
- Pomc.Potl
- Pomc.Prec
- Pomc.Prop
- Pomc.Satisfiability
- Pomc.ModelChecker
- Pomc.Parse.Parser
- Pomc.Parse.MiniProc
- Pomc.OpaGen
- Pomc.MiniProc
- Pomc.MiniIR
- Pomc.TimeUtils
- Pomc.LogUtils
- Pomc.Z3Encoding
- Pomc.Prob.ProbModelChecker
- Pomc.Prob.MiniProb
- Pomc.Prob.ProbUtils
ghc-options:
- -Wall
- -Wno-incomplete-patterns
- -Wno-incomplete-uni-patterns
- -Wno-orphans
- -O2
dependencies:
- bv
- containers
- mtl
- transformers
- deepseq
- megaparsec
- parser-combinators
- text
- vector
- hashable
- hashtables
- unordered-containers
- random
- filepath
- z3
- monad-logger
- scientific
- integer-logarithms
- witch
- strict-containers
- hmatrix
executables:
pomc:
main: Main.hs
source-dirs: pomc
ghc-options:
- -rtsopts
- -with-rtsopts=-H
- -Wall
- -O2
dependencies:
- oppas
- megaparsec
- text
- containers
- cmdargs
ld-options: -Wl,-rpath -Wl,$ORIGIN/lib
popacheck:
main: Main.hs
source-dirs: popacheck
ghc-options:
- -rtsopts
- -with-rtsopts=-H
- -Wall
- -O2
dependencies:
- oppas
- filepath
- megaparsec
- text
- containers
- cmdargs
ld-options: -Wl,-rpath -Wl,$ORIGIN/lib
internal-libraries:
pomc-tests:
source-dirs: test
ghc-options:
- -Wall
- -O2
dependencies:
- oppas
- containers
- tasty
- tasty-hunit
- tasty-quickcheck
- tasty-bench
- raw-strings-qq
- megaparsec
- text
tests:
test-pomc:
main: Test.hs
source-dirs: test/test
ghc-options:
- -rtsopts
- -with-rtsopts=-H
- -Wall
- -O2
- -threaded
dependencies:
- pomc-tests
- tasty
benchmarks:
bench-pomc:
main: Bench.hs
source-dirs: test/bench
ghc-options:
- -rtsopts
- -with-rtsopts=-H
- -Wall
- -O2
dependencies:
- pomc-tests
- tasty-bench