-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmsat.opam
More file actions
24 lines (23 loc) · 754 Bytes
/
Copy pathmsat.opam
File metadata and controls
24 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
opam-version: "2.0"
name: "msat"
synopsis: "Library containing a SAT solver that can be parametrized by a theory"
license: "Apache-2.0"
version: "0.9.1"
author: ["Simon Cruanes" "Guillaume Bury"]
maintainer: ["guillaume.bury@gmail.com" "simon.cruanes.2007@m4x.org"]
build: [
["dune" "build" "@install" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name] {with-doc}
["dune" "runtest" "-p" name] {with-test}
]
depends: [
"ocaml" { >= "4.03" }
"dune" { >= "3.0" }
"iter" { >= "1.2" }
"containers" {with-test & >= "2.8.1" & < "4.0" }
"mdx" {with-test}
]
tags: [ "sat" "smt" "cdcl" "functor" ]
homepage: "https://github.com/Gbury/mSAT"
dev-repo: "git+https://github.com/Gbury/mSAT.git"
bug-reports: "https://github.com/Gbury/mSAT/issues/"