Nominal/Ex/LF.thy
author Cezary Kaliszyk <kaliszyk@in.tum.de>
Mon, 30 Aug 2010 15:55:08 +0900
changeset 2456 5e76af0a51f9
parent 2454 9ffee4eb1ae1
child 2617 e44551d067e6
permissions -rw-r--r--
No need to unfold mem_def with rsp/prs (requires new isabelle).

theory LF
imports "../Nominal2"
begin

declare [[STEPS = 100]]

atom_decl name
atom_decl ident

nominal_datatype kind =
    Type
  | KPi "ty" n::"name" k::"kind" bind n in k
and ty =
    TConst "ident"
  | TApp "ty" "trm"
  | TPi "ty" n::"name" ty::"ty"   bind n in ty
and trm =
    Const "ident"
  | Var "name"
  | App "trm" "trm"
  | Lam "ty" n::"name" t::"trm"  bind n in t

(*thm kind_ty_trm.supp*)


end