-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
33 lines (30 loc) · 994 Bytes
/
dune-project
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
(lang dune 2.7)
(name ssp_verification)
(version 1.1.0)
(generate_opam_files true)
(source (github zajer/trs-ssp-verif))
(license MIT)
(authors "Piotr Cybulski")
(maintainers "pikus3@list.pl")
(homepage "https://github.com/zajer/trs-ssp-verif")
(bug_reports "https://github.com/zajer/trs-ssp-verif")
(package
(name ssp_verification)
(synopsis "A library for verification of system modeled as tracking reactive systems.")
(description
"This library allows to verify whether the system was designed correctly as well construct consequetive states of a scenario.
It is meant to be used with libraries tracking_bigraph,ssp and ssp_bridge.
On top of that, a module is provided for exporting verification results into structures acceptable by visjs library.
"
)
(tags ("bigraphs" "tracking" "verification" "behavior" "policy"))
(depends
(dune (and :build (>= 2.0.0)))
bigraph
tracking_bigraph
csv
ssp
ssp_bridge
(ounit2 :with-test)
)
)