type-theory/src/loopspace.agda
2022-10-31 16:05:18 -05:00

20 lines
381 B
Agda
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- TODO: Define arbitrary high loop spaces
-- Prelude stuff
{-# OPTIONS --cubical #-}
open import Agda.Primitive public renaming ( Set to Type )
open import Agda.Builtin.Cubical.Path public
variable
: Level
Path : {} (A : Type ) A A Type
Path A a b = PathP (λ _ A) a b
-- Circle
data : Type where
base :
loop : base base