Nominal/Ex/ExLetMult.thy
author Christian Urban <urbanc@in.tum.de>
Sun, 09 May 2010 11:43:24 +0100
changeset 2081 9e7cf0a996d3
parent 2057 232595afb82e
child 2082 0854af516f14
permissions -rw-r--r--
fixed the problem with alpha containing splits

theory ExLetMult
imports "../NewParser"
begin

atom_decl name

nominal_datatype trm =
  Vr "name"
| Ap "trm" "trm"
| Lm x::"name" t::"trm" bind_set x in t
| Lt l::"lts" t::"trm" s::"trm" bind "bn l" in t s
and lts =
  Lnil
| Lcons "name" "trm" "lts"
binder
  bn
where
  "bn Lnil = []"
| "bn (Lcons x t l) = (atom x) # (bn l)"

thm trm_lts.eq_iff
thm trm_lts.induct
thm trm_lts.fv[simplified trm_lts.supp]

end