this repo has no description
1opam-version: "2.0" 2maintainer: "alt-ergo@ocamlpro.com" 3authors: "Alt-Ergo developers" 4license: "OCamlPro Non-Commercial License" 5homepage: "http://alt-ergo.ocamlpro.com/" 6bug-reports: "https://github.com/OCamlPro/alt-ergo/issues" 7dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git" 8build: 9[ 10 ["./configure" "-prefix" "%{prefix}%"] 11 [make "fm-simplex"] 12] 13 14install: 15[ 16 [make "install-fm-simplex" "MANDIR=%{man}%/man1"] 17] 18 19remove: 20[ 21 ["rm" "%{prefix}%/lib/alt-ergo/plugins/fm-simplex-plugin.cmxs"] 22] 23 24depends: [ 25 "ocaml" {>= "4.01.0"} 26 "zarith" {>= "1.4"} 27 "camlzip" 28 "ocplib-simplex" {= "0.3"} 29 "alt-ergo" {= "1.30"} 30] 31synopsis: 32 "Alt-Ergo, an SMT Solver for Software Verification: FM-Simplex Plugin" 33description: """ 34Alt-Ergo is an automatic prover of mathematical formulas used behind software verification tools such as Frama-C, SPARK, Why3, Atelier-B and Caveat. 35 36This package provides the FM-Simplex plugin for Alt-Ergo: an alternative to Fourier-Motzkin elimination algorithm described in [this paper](https://hal.archives-ouvertes.fr/hal-00687640). 37 38usage: alt-ergo -inequalities-plugin fm-simplex-plugin.cmxs [other-options] <file.why>""" 39flags: light-uninstall 40url { 41 src: "http://alt-ergo.ocamlpro.com/http/alt-ergo-1.30/alt-ergo-1.30.tar.gz" 42 checksum: [ 43 "sha256=2fd8428323efeafe1f0a92aeaf98242f4668784567a25eac230675451653b708" 44 "md5=c7100ebd625fbd7d3e5247dbac689748" 45 ] 46}