-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #632 from mattam82/rocq-renaming
Rocq-renaming
- Loading branch information
Showing
245 changed files
with
1,647 additions
and
1,369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CAMLPKGS+=-package coq-core.plugins.extraction,coq-core.plugins.cc | ||
CAMLPKGS+=-package rocq-runtime.plugins.extraction,rocq-runtime.plugins.cc | ||
ci: all test-suite examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CAMLPKGS+=-package rocq-runtime.plugins.extraction,rocq-runtime.plugins.cc | ||
ci: all test-suite examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
src/META.coq-equations.in | ||
src/META.rocq-equations.in | ||
-I src | ||
-I test-suite | ||
-Q src Equations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -f Makefile.coq Makefile.hott | ||
rm -f Makefile.rocq Makefile.hott | ||
|
||
if [ "$1" == "--enable-hott" ] | ||
then | ||
if command -v coqtop >/dev/null 2>&1 | ||
then coq_makefile -f _HoTTProject -o Makefile.hott | ||
else echo "Error: coqtop not found in path" | ||
if command -v rocq >/dev/null 2>&1 | ||
then rocq makefile -f _HoTTProject -o Makefile.hott | ||
else echo "Error: rocq not found in path" | ||
fi | ||
fi | ||
|
||
if command -v coqtop >/dev/null 2>&1 | ||
then coq_makefile -f _CoqProject -o Makefile.coq | ||
else echo "Error: coqtop not found in path" | ||
if command -v rocq >/dev/null 2>&1 | ||
then rocq makefile -f _CoqProject -o Makefile.rocq | ||
else echo "Error: rocq not found in path" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,38 @@ | ||
(lang dune 2.5) | ||
(using coq 0.2) | ||
(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") | ||
|
||
(name 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 "Do not install") | ||
(depends rocq-equations)) | ||
|
||
(package | ||
(name rocq-equations-tests) | ||
(synopsis "Technical package to run tests") | ||
(description "Do not install") | ||
(depends rocq-equations)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.