this repo has no description
1opam-version: "2.0"
2maintainer: "Arlen Cox <arlencox@gmail.com>"
3authors: "Arlen Cox <arlencox@gmail.com>"
4homepage: "https://github.com/arlencox/SETr"
5bug-reports: "https://github.com/arlencox/SETr/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/arlencox/SETr.git"
8build: [make]
9install: [make "install"]
10remove: ["ocamlfind" "remove" "setr"]
11depends: [
12 "ocaml" {>= "4.01.0" & < "5.0.0"}
13 "ocamlfind" {build}
14 "cppo" {build}
15 "mlbdd"
16 "ocamlbuild" {build}
17]
18synopsis: "Abstract domain library for sets"
19description: """
20SETr is an interface for set abstractions. It defines common infrastructure for
21abstracting set constraints for use in an abstract interpreter. Built upon this
22interface, it provides a number of included abstractions usable as libraries.
23These included abstractions are tuned for high-performance, symbolic (no known
24constants), relational (constraints over multiple variables) constraints."""
25flags: light-uninstall
26url {
27 src: "https://github.com/arlencox/SETr/archive/v0.1.1.tar.gz"
28 checksum: [
29 "sha256=a0c5aeefb785d0b3c5f4d45213749334193c255d8c8a768896596f64ba198c74"
30 "md5=07484d7fc9623196950cde9aff7167ca"
31 ]
32}