Skip to content
Snippets Groups Projects
Commit 81be8438 authored by gabrielhdt's avatar gabrielhdt
Browse files

subtyping of arrow and dependent arrow

parent 020c11a3
No related branches found
No related tags found
No related merge requests found
......@@ -8,4 +8,8 @@ symbol Refl (a: Utype): ε (a ⊑ a)
symbol Trans (s t u: Utype): ε (s ⊑ t) ⇒ ε (t ⊑ u) ⇒ ε (s ⊑ u)
symbol Restr {a: Utype} (p: η a ⇒ Ubool): ε (psub p ⊑ a)
symbol Arr (t u1 u2: Utype): ε (u1 ⊑ u2) ⇒ ε ((t ~> u1) ⊑ (t ~> u2))
symbol Darr (d: Utype) (r1: η d ⇒ Utype) (r2: η d ⇒ Utype)
: ε (forall (λx, (r1 x) ⊑ (r2 x))) ⇒ ε ((arrd r1) ⊑ (arrd r2))
//symbol Subset
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