Mentions légales du service

Skip to content
Snippets Groups Projects
coq-itauto.opam 1.37 KiB
Newer Older
opam-version: "2.0"
maintainer: "frederic.besson@inria.fr"
homepage: "https://gitlab.inria.fr/fbesson/itauto"
dev-repo: "git+https://gitlab.inria.fr/fbesson/itauto.git"
authors: ["Frédéric Besson"]
BESSON Frederic's avatar
BESSON Frederic committed
bug-reports: ["frederic.besson@inria.fr" "https://gitlab.inria.fr/fbesson/itauto/-/issues"]
license: "MIT"
synopsis: "Reflexive SAT solver with Nelson-Oppen support, parameterised by a leaf tactic inside Coq"
description: """
itauto is a reflexive intuitionistic SAT solver parameterised by a theory module.
When run inside Coq, the theory module wraps an arbitrary Coq tactic, e.g., the lia
solver for linear arithmetic or the congruence solver for uninterpreted function symbols
and constructors. Using a black-box Nelson-Oppen scheme for combination of theories,
itauto also provides an SMT-like tactic for propositional reasoning modulo the solvers for
both arithmetic and function symbols.
"""

BESSON Frederic's avatar
BESSON Frederic committed
build: [
  [make "-j%{jobs}%"]
  [make "test"] {with-test}
 ]
install: [make "install"]
depends: [
  "ocaml" {>= "4.9~"}
  "coq" {= "dev"}
  "ocamlbuild" {build}
BESSON Frederic's avatar
BESSON Frederic committed
  "coq-mathcomp-zify" {with-test}
]
depopts: [ "ocamlformat" {build} ]

tags: [
  "category:Miscellaneous/Coq Extensions"
  "category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
  "keyword:integers"
  "keyword:SAT"
  "keyword:SMT"
  "keyword:Nelson-Oppen"
  "keyword:automation"
  "logpath:Cdcl"
]