Agda UALib ↑



{-# OPTIONS --without-K --exact-split --safe #-}

module Universes where

open import Agda.Primitive public
  using (_⊔_)
  renaming (lzero to 𝓤₀
          ; lsuc to _⁺
          ; Level to Universe
          ; Setω to 𝓤ω
          )

variable
 𝓤 𝓥 𝓦 𝓣 𝓤' 𝓥' 𝓦' 𝓣' : Universe

The following should be the only use of the Agda keyword ‘Set’ in this development:


 : (𝓤 : Universe)  _
𝓤 ̇ = Set 𝓤

𝓤₁ = 𝓤₀ 
𝓤₂ = 𝓤₁ 

_⁺⁺ : Universe  Universe
𝓤 ⁺⁺ = 𝓤  

This is mainly to avoid naming implicit arguments:


universe-of : (X : 𝓤 ̇ )  Universe
universe-of {𝓤} X = 𝓤

precedences:


infix  1