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
|
|
13 |
| Let p::"pat" "trm" t::"trm" bind_set "f p" in t
|
|
14 |
and pat =
|
1596
|
15 |
PN
|
|
16 |
| PS "name"
|
|
17 |
| PD "name" "name"
|
|
18 |
binder
|
2026
|
19 |
f::"pat \<Rightarrow> atom set"
|
1596
|
20 |
where
|
|
21 |
"f PN = {}"
|
|
22 |
| "f (PD x y) = {atom x, atom y}"
|
|
23 |
| "f (PS x) = {atom x}"
|
2026
|
24 |
thm trm_pat.bn
|
|
25 |
thm trm_pat.perm
|
|
26 |
thm trm_pat.induct
|
|
27 |
thm trm_pat.distinct
|
|
28 |
thm trm_pat.fv[simplified trm_pat.supp(1-2)]
|
1596
|
29 |
|
|
30 |
end
|
|
31 |
|
|
32 |
|
|
33 |
|