Nominal/Ex/SingleLet.thy
author Cezary Kaliszyk <kaliszyk@in.tum.de>
Wed, 23 Jun 2010 09:01:45 +0200
changeset 2328 10f699b48ba5
parent 2327 bcb037806e16
child 2330 8728f7990f6d
permissions -rw-r--r--
Un-do the second change to SingleLet.

theory SingleLet
imports "../NewParser"
begin

atom_decl name

nominal_datatype trm =
  Var "name"
| App "trm" "trm"
| Lam x::"name" t::"trm"  bind_set x in t
| Let a::"assg" t::"trm" bind_set "bn a" in t
 
and assg =
  As "name" "trm"
binder
  bn::"assg \<Rightarrow> atom set"
where
  "bn (As x t) = {atom x}"

ML {* Inductive.the_inductive *}
thm trm_assg.fv
thm trm_assg.supp
thm trm_assg.eq_iff
thm trm_assg.bn
thm trm_assg.perm
thm trm_assg.induct
thm trm_assg.inducts
thm trm_assg.distinct
ML {* Sign.of_sort @{theory} (@{typ trm}, @{sort fs}) *}
(* thm trm_assg.fv[simplified trm_assg.supp(1-2)] *)


end