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: "5dda86e6c485160e1d5d541a81760694f533e841"
53url {
54 src:
55 "https://github.com/grayswandyr/electrod/releases/download/0.8.0/electrod-0.8.0.tbz"
56 checksum: [
57 "sha256=dd47a6d755dc80a9a75fa21bda7a6507316ca2a33f7201d25ee9ba01d902a6a2"
58 "sha512=abc8bb1194df32bfe3c00f499dd989868c9ad208c8c7401085b9c18e87890eae1c087dbbb9bf128f95f4e759de27e1d7a6d6b2f7a5e6a9b000b469d72c77b87a"
59 ]
60}