-
Notifications
You must be signed in to change notification settings - Fork 4
/
dune-project
48 lines (40 loc) · 1.35 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(lang dune 3.5)
(name electrod)
(using menhir 2.1)
(generate_opam_files true)
(license MPL-2.0)
(maintainers "David Chemouil <[email protected]>")
(authors "David Chemouil" "Julien Brunel")
(source (github grayswandyr/electrod))
(package
(name electrod)
(depends
(cmdliner ( <= 1.1.1))
(containers ( <= 3.10))
(containers-data ( <= 3.10))
(dune (<= 3.5.0))
(dune-build-info ( <= 3.5.0))
(fmt ( <= 0.9.0))
(gen ( <= 1.0))
(hashcons ( <= 1.3))
(iter ( <= 1.6))
(logs ( <= 0.7.0))
(mdx :with-test)
(menhir ( <= 20220210))
(mtime ( <= 1.4.0))
(ocaml (= 4.14.1))
(ocamlformat (= 0.24.1))
(ocaml-lsp-server ( <= 1.14.2))
(ppx_deriving ( <= 5.2.1))
(ppx_expect ( <= v0.16.0))
(ppx_inline_test ( <= v0.16.1))
(printbox ( <= 0.6.1))
(printbox-text ( <= 0.6.1))
(stdcompat ( <= 19))
(stdlib-shims ( <= 0.3.0))
(utop ( <= 2.10.0))
(visitors ( <= 20210608))
)
(synopsis "Formal analysis for the Electrod formal pivot language")
(description
"Electrod is a model finder that takes as input a model expressed in a mixture of relational first-order logic (RFOL) over bounded domains and linear temporal logic (LTL) over an unbounded time horizon. Then it compiles the model to a problem for a solver (currently the NuSMV and nuXmv model-checkers). Electrod is mainly meant to be used as a backend for the Alloy Analyzer 6."))