author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Mon, 10 May 2010 15:45:04 +0200 | |
changeset 2093 | 751d1349329b |
parent 2082 | 0854af516f14 |
child 2104 | 2205b572bc9b |
permissions | -rw-r--r-- |
1600 | 1 |
theory ExPS3 |
2053 | 2 |
imports "../NewParser" |
1600 | 3 |
begin |
4 |
||
5 |
(* example 3 from Peter Sewell's bestiary *) |
|
6 |
||
7 |
atom_decl name |
|
8 |
||
2053 | 9 |
ML {* val _ = cheat_alpha_eqvt := true *} |
10 |
ML {* val _ = cheat_equivp := true *} |
|
11 |
ML {* val _ = cheat_alpha_bn_rsp := true *} |
|
12 |
||
1600 | 13 |
nominal_datatype exp = |
2082
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
14 |
Var "name" |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
15 |
| App "exp" "exp" |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
16 |
| Lam x::"name" e::"exp" bind_set x in e |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
17 |
| Let x::"name" p::"pat" e1::"exp" e2::"exp" bind_set x in e2, bind_set "bp p" in e1 |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
18 |
and pat = |
1600 | 19 |
PVar "name" |
20 |
| PUnit |
|
2082
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
21 |
| PPair "pat" "pat" |
1600 | 22 |
binder |
2082
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
23 |
bp :: "pat \<Rightarrow> atom set" |
1600 | 24 |
where |
1656
c9d3dda79fe3
Removed remaining cheats + some cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1604
diff
changeset
|
25 |
"bp (PVar x) = {atom x}" |
c9d3dda79fe3
Removed remaining cheats + some cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1604
diff
changeset
|
26 |
| "bp (PUnit) = {}" |
c9d3dda79fe3
Removed remaining cheats + some cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
1604
diff
changeset
|
27 |
| "bp (PPair p1 p2) = bp p1 \<union> bp p2" |
1600 | 28 |
|
2082
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
29 |
thm exp_pat.fv |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
30 |
thm exp_pat.eq_iff |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
31 |
thm exp_pat.bn |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
32 |
thm exp_pat.perm |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
33 |
thm exp_pat.induct |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
34 |
thm exp_pat.distinct |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
35 |
thm exp_pat.fv |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
36 |
thm exp_pat.supp(1-2) |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
37 |
|
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
38 |
declare permute_exp_raw_permute_pat_raw.simps[eqvt] |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
39 |
declare alpha_gen_eqvt[eqvt] |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
40 |
|
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
41 |
equivariance alpha_exp_raw |
0854af516f14
cleaned up a bit the examples; added equivariance to all examples
Christian Urban <urbanc@in.tum.de>
parents:
2053
diff
changeset
|
42 |
|
1600 | 43 |
|
44 |
end |
|
45 |
||
46 |
||
47 |