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.7"} 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 "odoc" {with-doc} 37] 38build: [ 39 ["dune" "subst"] {dev} 40 [ 41 "dune" 42 "build" 43 "-p" 44 name 45 "-j" 46 jobs 47 "@install" 48 "@runtest" {with-test} 49 "@doc" {with-doc} 50 ] 51] 52dev-repo: "git+https://github.com/grayswandyr/electrod.git" 53x-commit-hash: "ff6b5981d0f6dfe99f17a744b58670b332f813ff" 54url { 55 src: 56 "https://github.com/grayswandyr/electrod/releases/download/1.0.0/electrod-1.0.0.tbz" 57 checksum: [ 58 "sha256=4da251e58d97c797d6e940e586d225a09715777fbb1b25c5527a6a2e1e3c2d58" 59 "sha512=89c45ebd0d3401b17eac4217289ed21ec87135ab5fa62bf63b2bed1ad1435a381e3434582c2ec99c2e6d8d87ce23cecfa7ba14d76234493992ae06879b808dd2" 60 ] 61}