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.05.0"} 18 "dune" {>= "2.0"} 19 "dune-build-info" 20 "cmdliner" 21 "containers" {>= "2.8" & < "3.0"} 22 "fmt" {>= "0.8.7"} 23 "gen" 24 "hashcons" 25 "logs" 26 "mdx" {with-test} 27 "menhir" 28 "mtime" {< "2.0.0"} 29 "ppx_deriving" 30 "printbox" {< "0.6"} 31 "iter" 32 "stdcompat" 33 "stdlib-shims" 34 "visitors" {>= "20190513"} 35] 36build: [ 37 ["dune" "subst"] {dev} 38 [ 39 "dune" 40 "build" 41 "-p" 42 name 43 "-j" 44 jobs 45 "@install" 46 "@runtest" {with-test} 47 "@doc" {with-doc} 48 ] 49] 50dev-repo: "git+https://github.com/grayswandyr/electrod.git" 51x-commit-hash: "5adab6dc4d9e157e3ce2507e00ecd09013e63c9d" 52url { 53 src: 54 "https://github.com/grayswandyr/electrod/releases/download/0.7.1/electrod-0.7.1.tbz" 55 checksum: [ 56 "sha256=e5d2278c99128621110cd015dafcbcae9792bbf2c8bb09d7b02c57d50fa28075" 57 "sha512=e08ecf720d35b6ee72f37d780cc3da22f61e22314ffd093ff3314fb89684b863b5c96c97375d48bcb4ba2838ec8f61a495105c989f292c5dbcd095e14f52bdba" 58 ] 59}