1596
|
1 |
theory Ex2
|
2026
|
2 |
imports "../NewParser"
|
1596
|
3 |
begin
|
|
4 |
|
|
5 |
text {* example 2 *}
|
|
6 |
|
|
7 |
atom_decl name
|
|
8 |
|
2026
|
9 |
nominal_datatype trm =
|
1596
|
10 |
Var "name"
|
2026
|
11 |
| App "trm" "trm"
|
|
12 |
| Lam x::"name" t::"trm" bind_set x in t
|
2177
|
13 |
| Let p::"pat" "trm" t::"trm" bind "f p" in t
|
2026
|
14 |
and pat =
|
1596
|
15 |
PN
|
|
16 |
| PS "name"
|
|
17 |
| PD "name" "name"
|
|
18 |
binder
|
2177
|
19 |
f::"pat \<Rightarrow> atom list"
|
1596
|
20 |
where
|
2177
|
21 |
"f PN = []"
|
|
22 |
| "f (PS x) = [atom x]"
|
|
23 |
| "f (PD x y) = [atom x, atom y]"
|
|
24 |
|
2026
|
25 |
thm trm_pat.bn
|
|
26 |
thm trm_pat.perm
|
|
27 |
thm trm_pat.induct
|
|
28 |
thm trm_pat.distinct
|
|
29 |
thm trm_pat.fv[simplified trm_pat.supp(1-2)]
|
1596
|
30 |
|
2177
|
31 |
lemma lets_overlap1:
|
|
32 |
"atom a \<noteq> atom b \<Longrightarrow> Let (PD a a) x y \<noteq> Let (PD a b) x y"
|
|
33 |
by (simp add: trm_pat.eq_iff alphas)
|
|
34 |
|
|
35 |
lemma lets_overlap2:
|
|
36 |
"atom a \<notin> supp y \<Longrightarrow> atom b \<notin> supp y \<Longrightarrow> Let (PD a a) x y = Let (PD b b) x y"
|
|
37 |
apply (simp add: trm_pat.eq_iff alphas trm_pat.supp)
|
|
38 |
apply (rule_tac x="(a\<leftrightarrow>b)" in exI)
|
|
39 |
apply (simp add: eqvts)
|
|
40 |
apply (rule conjI)
|
|
41 |
prefer 2
|
|
42 |
apply (rule Nominal2_Supp.supp_perm_eq)
|
|
43 |
apply (unfold fresh_star_def)
|
|
44 |
apply (unfold fresh_def)
|
|
45 |
apply (unfold flip_def)
|
|
46 |
apply (simp_all add: supp_swap)
|
|
47 |
apply auto
|
|
48 |
done
|
2082
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
diff
changeset
|
49 |
|
1596
|
50 |
end
|
|
51 |
|
|
52 |
|
|
53 |
|