Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmxlarchey/coq-is-total
A proof that Coq contains any total mu-recursive function
https://github.com/dmxlarchey/coq-is-total
coq-formalization recursive-functions
Last synced: 29 days ago
JSON representation
A proof that Coq contains any total mu-recursive function
- Host: GitHub
- URL: https://github.com/dmxlarchey/coq-is-total
- Owner: DmxLarchey
- License: other
- Created: 2017-03-29T13:08:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-09T23:41:41.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T07:44:20.454Z (3 months ago)
- Topics: coq-formalization, recursive-functions
- Language: Coq
- Homepage:
- Size: 87.9 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE_CeCILL_V2-en.txt
Awesome Lists containing this project
README
# Coq contains any provably total mu-recursive function
This development is a proof in [Coq](http://coq.inria.fr)
that any [mu-recursive](https://en.wikipedia.org/wiki/%CE%9C-recursive_function)
function which defines a total predicate can be represented
by a Coq term. It was developped under Coq 8.5pl3 but
should also compile with Coq 8.6. This code will **NOT compile**
under Coq 8.4 (see below).To compile, type
> make all
This code was developped by [Dominique Larchey-Wendling](http://www.loria.fr/~larchey)
and is distributed under the CeCILL Free Software License Agreement. It is complementary
to the paper [*Typing Total Recursive Functions in Coq*](http://www.loria.fr/~larchey)
which was submitted to ITP'2017.Starting from Coq 8.5, the syntax of pattern matching has changed. In particular,
the constructor exist (for type sig X) now has 3 arguments instead of two. It is
not possible to write code which is compatible for both Coq 8.4 and Coq 8.5.