forked from sigurdschneider/smpl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
opam
26 lines (26 loc) · 1.07 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
opam-version: "2.0"
version: "dev"
maintainer: "Yannick Forster <[email protected]>"
authors: ["Sigurd Schneider <[email protected]>"
"Yannick Forster <[email protected]>"
"Fabian Kunze <[email protected]>"]
homepage: "https://github.com/uds-psl/smpl"
bug-reports: "https://github.com/uds-psl/smpl/issues"
license: "MIT"
dev-repo: "git+https://github.com/uds-psl/smpl"
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml"
"coq" { >= "8.18" | = "dev" }
]
synopsis: "Smpl: An Extensible Tactic for Coq"
description: """
Smpl is useful for proof automation in Coq. Smpl provides named lists
of tactics to which tactics can be added with Coq commands. A special
tactic called 'smpl foo' executes the tactics in the lists named foo
in order, until one of them succeeds. Smpl works across modules by
merging tactics from all imports according to a priority number that
can be provided upon addition. Smpl thus allows to modify the behavior
of a tactic after it is defined in a convenient and modular way.
"""