Skip to content

Commit 2d1fa09

Browse files
committed
Use opam package coq-library-undecidability.1.0.1+8.16
1 parent 2777b82 commit 2d1fa09

File tree

3 files changed

+13
-30
lines changed

3 files changed

+13
-30
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333

3434
- run: opam repo add coq-released https://coq.inria.fr/opam/released
3535
- run: opam update
36-
- run: opam pin add coq-library-undecidability.dev+8.16 "https://github.com/uds-psl/coq-library-undecidability.git#coq-8.16"
36+
- run: opam install coq-library-undecidability.1.0.1+8.16
3737
- run: opam exec -- make all -j2 TIMED=1

README.md

+8-26
Original file line numberDiff line numberDiff line change
@@ -17,36 +17,27 @@ This library contains complexity theory. It is built upon the [Coq Library of Un
1717
- `Libs`: internal library files used in multiple other directories
1818

1919
## Installation
20-
<!---### Install from opam
2120

22-
Install the [A Coq Library of Undecidability Proofs](https://github.com/uds-psl/coq-library-undecidability), then install this.
23-
--->
2421
### Building from source
2522

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`.
3424

3525
- `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
3826
- `make html` generates clickable coqdoc `.html` in the `website` subdirectory
3927
- `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
4128

4229
### Troubleshooting
4330

44-
#### Coq version
31+
#### Version of Coq and dependencies
4532

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.
4736

4837
## Published work and technical reports
4938

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
5041
- 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/
5142
- 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/
5243

@@ -58,21 +49,12 @@ We use two frameworks which ease computability proofs with resource analysis for
5849
- 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
5950
- Verified Programming of Turing Machines in Coq. Yannick Forster, Fabian Kunze, Maximilian Wuttke. Technical report. https://github.com/uds-psl/tm-verification-framework/
6051

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
68-
- File a pull request.
69-
--->
70-
7152
## Contributors
7253

7354
- Fabian Kunze
7455
- Lennard Gäher
7556
- Maximilian Wuttke
7657
- Yannick Forster
58+
- Stefan Haan
7759

7860

opam

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ bug-reports: "https://github.com/uds-psl/coq-library-complexity/issues"
77
authors: ["Fabian Kunze"
88
"Lennard Gäher"
99
"Maximilian Wuttke"
10-
"Yannick Forster" ]
10+
"Yannick Forster"
11+
"Stefan Haan"]
1112
license: "CeCILL"
1213
build: [
1314
[make "-j%{jobs}%"]
@@ -19,8 +20,8 @@ remove: [
1920
["rm" "-R" "%{lib}%/coq/user-contrib/Complexity"]
2021
]
2122
depends: [
22-
"coq" {= "8.16"}
23-
"coq-library-undecidability" {>= "dev+8.16" }
23+
"coq" {>= "8.16" & < "8.17"}
24+
"coq-library-undecidability" {= "1.0.1+8.16" }
2425
]
2526

2627
synopsis: "A Coq Library of Complexity Theory"

0 commit comments

Comments
 (0)