Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jojodeveloping/acp
My project for a course at Saarland University called "Advanced Coq Programming". My work is limited to the Reflection.v and GeneralReflection.v files, with some slight modifications in PA.v and ZF.v
https://github.com/jojodeveloping/acp
coq coq-tactic
Last synced: 10 days ago
JSON representation
My project for a course at Saarland University called "Advanced Coq Programming". My work is limited to the Reflection.v and GeneralReflection.v files, with some slight modifications in PA.v and ZF.v
- Host: GitHub
- URL: https://github.com/jojodeveloping/acp
- Owner: JoJoDeveloping
- Created: 2020-11-10T20:08:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-28T16:27:42.000Z (almost 4 years ago)
- Last Synced: 2024-12-02T16:53:54.013Z (2 months ago)
- Topics: coq, coq-tactic
- Language: HTML
- Homepage:
- Size: 835 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# First-Order Reification
## What is this
This is a MetaCoq library for ACP, a course held at Saarland university about Advanced Coq Programming.
It takes certain Coq terms and reifies them into a First-Order logic theory, to then prove things about this theory in Coq without having to specify terms in yet another syntax.## How to use?
Examples are given in PA.v or ZF.v. You define an instance of `tarski_reflector`, and then you can use the `represent.` and `representNP.` tactics.
PA.v also shows how to write extension points.You can compile everything (including the samples, which do some printing) using the Makefile (i.e. run `make`. You of course need GNU make).
The project is written agains Coq 8.12 and MetaCoq. To create an opam environment with the exact dependencies, run the following commands:
```
opam switch create reification 4.09.1+flambda
eval $(opam env)
opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-metacoq.1.0~beta1+8.12
```## I want to know more! Why is this documentation so short?
For more information, see the related [PDF documentation](https://github.com/JoJoDeveloping/ACP/blob/master/documentation/doc.pdf) or the [CoqDoc](https://jojodeveloping.github.io/ACP/GeneralReflection.html).
If you are not viewing this file on GitHub, you should do so. Find the repository here: https://github.com/JoJoDeveloping/ACP