Skip to content
Snippets Groups Projects
Commit 475c61c4 authored by Max New's avatar Max New
Browse files

lower the universe level of the terms

parent 5562f568
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,10 @@ private
-- Values, Computations and Evaluation contexts,
-- quotiented by βη equivalence but *not* by order equivalence (i.e., up/dn laws)
data Subst : (Δ : TypeCtx) (Γ : TypeCtx) → Type (ℓ-suc ℓ-zero)
data Val : (Γ : TypeCtx) (A : SynType) → Type (ℓ-suc ℓ-zero)
data EvCtx : (Γ : TypeCtx) (A : SynType) (B : SynType) → Type (ℓ-suc ℓ-zero)
data Comp : (Γ : TypeCtx) (A : SynType) → Type (ℓ-suc ℓ-zero)
data Subst : (Δ : TypeCtx) (Γ : TypeCtx) → Type
data Val : (Γ : TypeCtx) (A : SynType) → Type
data EvCtx : (Γ : TypeCtx) (A : SynType) (B : SynType) → Type
data Comp : (Γ : TypeCtx) (A : SynType) → Type
-- This isn't actually induction-recursion, this is just a hack to get
-- around limitations of Agda's mutual recursion for HITs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment