mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-08 12:15:48 -05:00
24 lines
693 B
Text
24 lines
693 B
Text
opam-version: "2.0"
|
|
name: "msat"
|
|
synopsis: "Library containing a SAT solver that can be parametrized by a theory"
|
|
license: "Apache"
|
|
version: "dev"
|
|
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" {build}
|
|
"sequence"
|
|
"containers" {with-test}
|
|
"mdx" {with-test}
|
|
]
|
|
tags: [ "sat" "smt" ]
|
|
homepage: "https://github.com/Gbury/mSAT"
|
|
dev-repo: "git+https://github.com/Gbury/mSAT.git"
|
|
bug-reports: "https://github.com/Gbury/mSAT/issues/"
|
|
|