Nominal/Ex/LF.thy
author Christian Urban <urbanc@in.tum.de>
Thu, 14 Oct 2010 04:14:22 +0100
changeset 2524 693562f03eee
parent 2454 9ffee4eb1ae1
child 2617 e44551d067e6
permissions -rw-r--r--
major reorganisation of fset (renamed fset_to_set to fset, changed the definition of list_eq and fcard_raw)

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