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