Documentation

Stlc.call_by_value

inductive value :
TrmProp
Instances For
    theorem value_regular (t : Trm) :
    value tt.lc
    inductive eval :
    TrmTrmProp
    • eval_beta (e1 e2 : Trm) (T : Typ) : (λ T,e1).lcvalue e2eval ((λ T,e1) @ e2) (e1.open₀ e2)
    • eval_app1 (e1 e1' e2 : Trm) : e2.lceval e1 e1'eval (e1 @ e2) (e1' @ e2)
    • eval_app2 (e1 e2 e2' : Trm) : e1.lceval e2 e2'eval (e1 @ e2) (e1 @ e2')
    Instances For
      theorem eval_regular (e1 e2 : Trm) :
      eval e1 e2e1.lc e2.lc
      theorem preservation (E : context) (e : Trm) (T : Typ) :
      typing E e T∀ (e' : Trm), eval e e'typing E e' T
      theorem progress (e : Trm) (T : Typ) :
      typing [] e Tvalue e ∃ (e' : Trm), eval e e'