this repo has no description
1opam-version: "2.0"
2synopsis: "Formal analysis for the Electrod formal pivot language"
3description: """
4Electrod is a model finder inspired by Kodkod. It takes as input a
5model expressed in a mixture of relational first-order logic (RFOL)
6over bounded domains and linear temporal logic (LTL) over an unbounded
7time horizon. Then it compiles the model to a problem for a solver (currently
8the NuSMV and nuXmv tools) to produce example or counter-example traces.
9Electrod is primarily meant to be used as a backend for the Electrum formal method and tool."""
10maintainer: ["David Chemouil <david.chemouil+git@onera.fr>"]
11authors: ["David Chemouil" "Julien Brunel"]
12license: "MPL-2.0"
13homepage: "https://github.com/grayswandyr/electrod"
14doc: "https://grayswandyr.github.io/electrod/api"
15bug-reports: "https://github.com/grayswandyr/electrod/issues"
16depends: [
17 "ocaml" {>= "4.11.0"}
18 "dune" {>= "2.0"}
19 "dune-build-info"
20 "cmdliner"
21 "containers" {>= "3.0"}
22 "containers-data"
23 "fmt" {>= "0.8.7"}
24 "gen"
25 "hashcons"
26 "logs"
27 "mdx" {with-test}
28 "menhir"
29 "mtime" {< "2.0.0"}
30 "ppx_deriving"
31 "printbox" {< "0.6"}
32 "iter"
33 "stdcompat"
34 "stdlib-shims"
35 "visitors" {>= "20190513"}
36]
37build: [
38 ["dune" "subst"] {dev}
39 [
40 "dune"
41 "build"
42 "-p"
43 name
44 "-j"
45 jobs
46 "@install"
47 "@runtest" {with-test}
48 "@doc" {with-doc}
49 ]
50]
51dev-repo: "git+https://github.com/grayswandyr/electrod.git"
52x-commit-hash: "9cfb1e9bddf9b42dce97c9946d712a26e157397a"
53url {
54 src:
55 "https://github.com/grayswandyr/electrod/releases/download/0.9.0/electrod-0.9.0.tbz"
56 checksum: [
57 "sha256=b2263601350f2ffe3cb1671d8bdd256729986b248c1ec39e84ec76a2f2b8408c"
58 "sha512=f4c0e7a196c7a14fff51e7f0cc6f91ed8b3df965523d878ab507320f9771ec69efddb31252ff9763ed2f92bc8c369cea73ca20edebbc3c9ff327fe500f33bdf0"
59 ]
60}