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.02" & < "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.tar.gz" 28 checksum: [ 29 "sha256=7116011432db3c40edb36ef816d1d72b892e13ae72421dd864d4e00a46dfbffe" 30 "md5=56618f3f7a90e8eb9885a094fd306b8c" 31 ] 32}