-
Notifications
You must be signed in to change notification settings - Fork 5
/
opam
72 lines (71 loc) · 1.98 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
opam-version: "2.0"
name: "archsat"
version: "1.1"
author: "Guillaume Bury"
maintainer: "Guillaume Bury <[email protected]>"
license: "BSD-2-clauses"
build: [
[make "bin"]
[make "test"] { with-test }
[make "static"] { dedukti:installed }
]
install:[
[make
"MANDIR=%{man}%"
"BINDIR=%{archsat:bin}%"
"SHAREDIR=%{archsat:share}%"
"install"]
[make
"-C" "static"
"MANDIR=%{man}%"
"BINDIR=%{archsat:bin}%"
"SHAREDIR=%{archsat:share}%"
"install_dk"] { dedukti:installed }
]
remove: [
[make
"MANDIR=%{man}%"
"BINDIR=%{archsat:bin}%"
"SHAREDIR=%{archsat:share}%"
"uninstall"]
[make
"-C" "static"
"MANDIR=%{man}%"
"BINDIR=%{archsat:bin}%"
"SHAREDIR=%{archsat:share}%"
"uninstall"]
]
depends: [
"ocaml" { >= "4.07.0" }
"ocamlfind" { build }
"ocamlbuild" { build }
"qcheck" { with-test & >= "0.8" }
"dolmen" { >= "0.4" & < "0.5" }
"msat" { >= "0.7" & < "0.8" }
"containers" { >= "2.0" & < "3.0" }
"cmdliner" { >= "0.9.8" }
"zarith"
"ocamlgraph"
"gen"
"mtime"
"iter" { >= "0.5" }
"spelll" { >= "0.3" }
"uucp"
"uutf" { >= "1.0" }
]
depopts: [
"dedukti"
]
tags: [ "sat" "smt" "solver" "theorem prover" "tptp" "logic" "smtlib" "dimacs" ]
homepage: "https://gforge.inria.fr/projects/archsat/"
dev-repo: "git+https://scm.gforge.inria.fr/anonscm/git/archsat/archsat.git"
bug-reports: "https://gforge.inria.fr/tracker/?atid=14153&group_id=7473"
synopsis: "A first-order theorem prover with formal proof output"
description:
"Archsat is an experimental SMT/McSat solver, aimed at solving first-order problems.
Archsat integrates Tableau theory, superposition, and Rewriting into an McSat core.
Archsat currently features builtin support for equality, uninterpreted functions
and predicates, as well as rewriting. Additionally, whenever it finds a proof, it is
able to export that proof to various formal proof formats: coq proof script, coq proof term,
dedukti proof term.
"