Nominal/Ex/ExLF.thy
author Cezary Kaliszyk <kaliszyk@in.tum.de>
Mon, 10 May 2010 15:11:05 +0200
changeset 2089 e9f089a5cc17
parent 2059 c615095827e9
child 2082 0854af516f14
permissions -rw-r--r--
Parser changes for compound relations

theory ExLF
imports "../NewParser"
begin

atom_decl name
atom_decl ident

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

thm kind_ty_trm.supp

end