De Bruijn: changes the alignment of function arguments for consistency
This commit is contained in:
parent
849807da58
commit
41d7e373ce
1 changed files with 4 additions and 4 deletions
|
@ -692,10 +692,10 @@ variables it is easy to define the special case of
|
||||||
substitution for one free variable:
|
substitution for one free variable:
|
||||||
```
|
```
|
||||||
_[_] : ∀ {Γ A B}
|
_[_] : ∀ {Γ A B}
|
||||||
→ Γ , B ⊢ A
|
→ Γ , B ⊢ A
|
||||||
→ Γ ⊢ B
|
→ Γ ⊢ B
|
||||||
---------
|
---------
|
||||||
→ Γ ⊢ A
|
→ Γ ⊢ A
|
||||||
_[_] {Γ} {A} {B} N M = subst {Γ , B} {Γ} σ {A} N
|
_[_] {Γ} {A} {B} N M = subst {Γ , B} {Γ} σ {A} N
|
||||||
where
|
where
|
||||||
σ : ∀ {A} → Γ , B ∋ A → Γ ⊢ A
|
σ : ∀ {A} → Γ , B ∋ A → Γ ⊢ A
|
||||||
|
|
Loading…
Add table
Reference in a new issue