Nominal/Ex/Ex1.thy
author Christian Urban <urbanc@in.tum.de>
Sun, 29 Aug 2010 13:36:03 +0800
changeset 2454 9ffee4eb1ae1
parent 2436 Nominal/Ex/Term8.thy@3885dc2669f9
child 2475 486d4647bb37
permissions -rw-r--r--
renamed NewParser to Nominal2

theory Ex1
imports "../Nominal2"
begin

(* free names in bar are bound in foo *)

atom_decl name

nominal_datatype foo =
  Foo0 "name"
| Foo1 b::"bar" f::"foo" bind (set) "bv b" in f
and bar =
  Bar0 "name"
| Bar1 "name" s::"name" b::"bar" bind (set) s in b
binder
  bv
where
  "bv (Bar0 x) = {}"
| "bv (Bar1 v x b) = {atom v}"


thm foo_bar.fv_defs[no_vars] foo_bar.bn_defs[no_vars]

lemma
  "fv_foo (Foo1 (Bar1 v x (Bar0 x)) (Foo0 v)) = {}"
apply(simp only: foo_bar.fv_defs)
apply(simp only: foo_bar.bn_defs)
apply(simp only: supp_at_base)
apply(simp)
done

end