You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-26
Original file line number
Diff line number
Diff line change
@@ -17,36 +17,27 @@ This library contains complexity theory. It is built upon the [Coq Library of Un
17
17
-`Libs`: internal library files used in multiple other directories
18
18
19
19
## Installation
20
-
<!---### Install from opam
21
20
22
-
Install the [A Coq Library of Undecidability Proofs](https://github.com/uds-psl/coq-library-undecidability), then install this.
23
-
--->
24
21
### Building from source
25
22
26
-
There are two documented ways to install the dependencies of this library. This library depends on the [Coq Library of Undecidability Proofs](https://github.com/uds-psl/coq-library-undecidability), which is either provided as a git submodule or as opam package.
27
-
28
-
The recommended way to install dependencies is to checkout the submodules of this git repository with `git submodule update --init --recursive` and install all dependencies of the complexity library using `make depssubmodule`. This has the benefit of only compiles the files of the undecidability library actually needed by the complexity library.
29
-
30
-
Or use the `make depsopam` to install all dependencies using opam. The undecidability library is then automatically `opam pin`ned to a specific git hash.
31
-
32
-
33
-
<!---### Then, the [Coq Library of Undecidability Proofs](https://github.com/uds-psl/coq-library-undecidability)is included as a submodule in `./coq-library-undecidability`. -->
23
+
This library depends on the [Coq Library of Undecidability Proofs](https://github.com/uds-psl/coq-library-undecidability) version 1.0.1. See the installation instructions of this library. It will suffice to install the `opam` package `coq-library-undecidability.1.0.1+8.16`, for instance by `opam install . --deps-only`.
34
24
35
25
-`make all` builds the library and the dependencies
36
-
-`make depssubmodule` builds the dependencies using the submodule for the undecidability library and opam for everything else
37
-
-`make depsopam` builds the dependencies using opam for everything
38
26
-`make html` generates clickable coqdoc `.html` in the `website` subdirectory
39
27
-`make clean` removes all build files in `theories` and `.html` files in the `website` directory
40
-
-`make realclean` removes the build files of the dependencies as well as everything `make clean` removes
41
28
42
29
### Troubleshooting
43
30
44
-
#### Coq version
31
+
#### Version of Coq and dependencies
45
32
46
-
Be careful that this branch only compiles under Coq 8.15.
33
+
Be careful that this branch only compiles under Coq 8.16
34
+
and with the Coq Library of Undecidability Proofs, version 1.0.1.
35
+
Newer versions of the library are not supported, in particular versions 1.1 and upwards are not supported.
47
36
48
37
## Published work and technical reports
49
38
39
+
- Mechanising Complexity Theory: The Cook-Levin Theorem in Coq. Lennard Gäher, Fabian Kunze. ITP 2021. Subdirectory `NP/SAT`. https://doi.org/10.4230/LIPIcs.ITP.2021.20
40
+
- A Mechanised Proof of the Time Invariance Thesis for the Weak Call-By-Value λ-Calculus. Yannick Forster, Fabian Kunze, Gert Smolka, Maximilian Wuttke. ITP 2021. Subdirectories `L/TM` and `TM`. https://doi.org/10.4230/LIPIcs.ITP.2021.19
50
41
- Formal Small-step Verification of a Call-by-value Lambda Calculus Machine. Fabian Kunze, Gert Smolka, and Yannick Forster. APLAS 2018. Subdirectory `L/AbstractMachines`. https://www.ps.uni-saarland.de/extras/cbvlcm2/
51
42
- The Weak Call-By-Value λ-Calculus is Reasonable for Both Time and Space.Yannick Forster, Fabian Kunze, Marc Roth. POPL 2020. Mechanised parts in `L/AbstractMachines` and `SpaceboundsTime.v`https://www.ps.uni-saarland.de/extras/wcbv-reasonable/
52
43
@@ -58,21 +49,12 @@ We use two frameworks which ease computability proofs with resource analysis for
58
49
- A certifying extraction with time bounds from Coq to call-by-value lambda-calculus. ITP '19. https://github.com/uds-psl/certifying-extraction-with-time-bounds
59
50
- Verified Programming of Turing Machines in Coq. Yannick Forster, Fabian Kunze, Maximilian Wuttke. Technical report. https://github.com/uds-psl/tm-verification-framework/
60
51
61
-
<!---
62
-
## How to contribute
63
-
64
-
- Fork the project on GitHub.
65
-
- Create a new subdirectory for your project and add your files.
66
-
- Add a license for your project.
67
-
- Edit the "Existing undecidable problems" and the "Contributors" section in this file
0 commit comments