Universe levels
Content created by Fredrik Bakke, Egbert Rijke and Jonathan Prieto-Cubides.
Created on 2022-01-27.
Last modified on 2023-08-01.
module foundation.universe-levels where open import Agda.Primitive using (Level ; lzero ; lsuc ; _⊔_) renaming (Set to UU ; Setω to UUω) public
Idea
We import Agda’s built in mechanism of universe levels. The universes are called
UU
, which stands for univalent universe, although we will not immediately
assume that universes are univalent. This is done in
foundation.univalence.
Recent changes
- 2023-08-01. Fredrik Bakke. Small constructions from large ones in order theory (#680).
- 2023-06-10. Egbert Rijke and Fredrik Bakke. Cleaning up synthetic homotopy theory (#649).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-06-07. Fredrik Bakke. Move public imports before “Imports” block (#642).
- 2023-03-21. Fredrik Bakke. Formatting fixes (#530).