Nominal/Ex/LetRec2.thy
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Tue, 19 Feb 2013 06:58:14 +0000
branchNominal2-Isabelle2013
changeset 3208 da575186d492
parent 3065 51ef8a3cb6ef
permissions -rw-r--r--
updated for 2013 release

theory LetRec2
imports "../Nominal2"
begin

atom_decl name

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


thm trm_lts.fv_defs
thm trm_lts.eq_iff
thm trm_lts.bn_defs
thm trm_lts.perm_simps
thm trm_lts.induct
thm trm_lts.distinct


end