Equations
- termContext = Lean.ParserDescr.node `termContext 1024 (Lean.ParserDescr.symbol "context")
Instances For
Equations
- context_terms [] = ∅
- context_terms ((x_1, snd) :: Γ') = {x_1} ∪ context_terms Γ'
Instances For
Equations
- in_context x [] = False
- in_context x (b :: m) = (x = b.1 ∨ in_context x m)
Instances For
theorem
not_context_terms_to_not_in_context
(x : ℕ)
(Γ : context)
:
x ∉ context_terms Γ → ¬in_context x Γ
theorem
in_context_append_neg
(x : ℕ)
(Γ Δ : context)
:
¬in_context x (Γ ++ Δ) → ¬in_context x Γ ∧ ¬in_context x Δ
theorem
in_context_append_neg'
(x : ℕ)
(Γ Δ : context)
:
¬in_context x Γ ∧ ¬in_context x Δ → ¬in_context x (Γ ++ Δ)
theorem
valid_push
(Γ : context)
(x : ℕ)
(T : Typ)
:
valid_ctx Γ → ¬in_context x Γ → valid_ctx ([(x, T)] ++ Γ)
Equations
- _root_.get x [] = none
- _root_.get x ((x_2, snd) :: Γ') = if x = x_2 then some snd else _root_.get x Γ'
Instances For
theorem
binds_tail
(x : ℕ)
(T : Typ)
(Γ Δ : context)
:
binds x T Γ → ¬in_context x Δ → binds x T (Δ ++ Γ)