Skip to content

haansn08/coq-library-complexity

 
 

Repository files navigation

The Coq Library of Complexity Theory

build

This library contains complexity theory. It is built upon the Coq Library of Undecidability Proofs.

Content

Directory structure

  • Complexity: basic notions of complexity theory, formulated for the call-by-value lambda calculus L
  • HierarchyTheorem: the Time Hierarchy Theorem
  • NP: NP hardness and completeness proofs
  • NP/SAT: the Cook Levin Theorem
  • L/AbstractMachines: universal machines for L and their computability and resource analysis
  • L/TM: the L-computability of Turing machine related concepts
  • TM: the TM-computability results and resource analysis of concrete TMs
  • Libs: internal library files used in multiple other directories

Installation

Building from source

There are two documented ways to install the dependencies of this library. This library depends on the Coq Library of Undecidability Proofs, which is either provided as a git submodule or as opam package.

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.

Or use the make depsopam to install all dependencies using opam. The undecidability library is then automatically opam pinned to a specific git hash.

  • make all builds the library and the dependencies
  • make depssubmodule builds the dependencies using the submodule for the undecidability library and opam for everything else
  • make depsopam builds the dependencies using opam for everything
  • make html generates clickable coqdoc .html in the website subdirectory
  • make clean removes all build files in theories and .html files in the website directory
  • make realclean removes the build files of the dependencies as well as everything make clean removes

Troubleshooting

Coq version

Be careful that this branch only compiles under Coq 8.12.

Published work and technical reports

Related Papers and abstracts from the Coq Library of Undecidability Proofs

We make heavy use of the following results, which for technical reasons are oursourced to the Library of Undecidability Proofs.

We use two frameworks which ease computability proofs with resource analysis for call-by-value lambda-calculus and Turing machines:

Contributors

  • Fabian Kunze
  • Lennard Gäher
  • Maximilian Wuttke
  • Yannick Forster

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Coq 99.0%
  • Other 1.0%