-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathdune-project
38 lines (35 loc) · 1.3 KB
/
dune-project
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
(lang dune 3.13)
(using coq 0.8)
(name rocq-equations)
(source (github mattam82/Coq-Equations))
(license LGPL-2.1-only)
(authors "Matthieu Sozeau <[email protected]>" "Cyprien Mangin <[email protected]>")
(maintainers "Matthieu Sozeau <[email protected]>")
(homepage "https://mattam82.github.io/Coq-Equations")
(package
(name rocq-equations)
(synopsis "A function definition package for Rocq")
(description "Equations is a function definition plugin for Rocq, that allows the \
definition of functions by dependent pattern-matching and well-founded, \
mutual or nested structural recursion and compiles them into core \
terms. It automatically derives the clauses equations, the graph of the \
function and its associated elimination principle.")
(tags ("keyword:dependent pattern-matching"
"keyword:functional elimination"
"category:Miscellaneous/Coq Extensions"
"logpath:Equations"))
(depends
(ocaml (>= 4.10.0))
(rocq-prover (>= "9.0~"))
(ppx_optcomp :build)
(ocaml-lsp-server :with-dev-setup)))
(package
(name rocq-equations-examples)
(synopsis "Examples")
(description "Examples of use of Equations")
(depends rocq-equations))
(package
(name rocq-equations-tests)
(synopsis "Technical package to run tests")
(description "Do not install")
(depends rocq-equations))