lean2/hott/hott.md

24 lines
906 B
Markdown
Raw Normal View History

The Lean Homotopy Type Theory Library
=====================================
The Lean homotopy type theory library is contained in the following
files and directories:
* [init](init/init.md) : constants and theorems needed for low-level system operations
* [types](types/types.md) : concrete datatypes and type constructors
2015-04-25 00:13:08 +00:00
* [hit](hit/hit.md): higher inductive types
* [algebra](algebra/algebra.md) : algebraic structures
2015-05-01 03:26:55 +00:00
* [arity](arity.hlean) : a file containing theorems about functions with arity 2 or higher
2015-04-25 00:13:08 +00:00
Lean's homotopy type theory kernel is a version of Martin-Löf Type Theory with:
* universe polymorphism
2015-04-25 00:13:08 +00:00
* a non-cumulative hierarchy of universes, `Type 0`, `Type 1`, ...
* inductively defined types
Note that there is no proof-irrelevant or impredicative universe.
By default, the univalence axiom is declared on initialization.
See also the [standard library](../library/library.md).