author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Tue, 09 Sep 2014 05:12:01 +0100 | |
changeset 8 | a605dda64267 |
parent 7 | b409ecf47f64 |
child 9 | 9e4b64c51fa1 |
permissions | -rw-r--r-- |
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
1 |
theory Re |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2 |
imports "Main" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3 |
begin |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
5 |
section {* Sequential Composition of Sets *} |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
6 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
7 |
definition |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
8 |
Sequ :: "string set \<Rightarrow> string set \<Rightarrow> string set" ("_ ;; _" [100,100] 100) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
9 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
10 |
"A ;; B = {s1 @ s2 | s1 s2. s1 \<in> A \<and> s2 \<in> B}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
11 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
12 |
text {* Two Simple Properties about Sequential Composition *} |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
13 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
14 |
lemma seq_empty [simp]: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
15 |
shows "A ;; {[]} = A" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
16 |
and "{[]} ;; A = A" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
17 |
by (simp_all add: Sequ_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
18 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
19 |
lemma seq_null [simp]: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
20 |
shows "A ;; {} = {}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
21 |
and "{} ;; A = {}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
22 |
by (simp_all add: Sequ_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
23 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
24 |
section {* Regular Expressions *} |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
25 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
26 |
datatype rexp = |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
27 |
NULL |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
28 |
| EMPTY |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
29 |
| CHAR char |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
30 |
| SEQ rexp rexp |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
31 |
| ALT rexp rexp |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
32 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
33 |
section {* Semantics of Regular Expressions *} |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
34 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
35 |
fun |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
36 |
L :: "rexp \<Rightarrow> string set" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
37 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
38 |
"L (NULL) = {}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
39 |
| "L (EMPTY) = {[]}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
40 |
| "L (CHAR c) = {[c]}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
41 |
| "L (SEQ r1 r2) = (L r1) ;; (L r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
42 |
| "L (ALT r1 r2) = (L r1) \<union> (L r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
43 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
44 |
|
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
45 |
section {* Values *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
46 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
47 |
datatype val = |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
48 |
Void |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
49 |
| Char char |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
50 |
| Seq val val |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
51 |
| Right val |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
52 |
| Left val |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
53 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
54 |
section {* Relation between values and regular expressions *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
55 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
56 |
inductive Prf :: "val \<Rightarrow> rexp \<Rightarrow> bool" ("\<turnstile> _ : _" [100, 100] 100) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
57 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
58 |
"\<lbrakk>\<turnstile> v1 : r1; \<turnstile> v2 : r2\<rbrakk> \<Longrightarrow> \<turnstile> Seq v1 v2 : SEQ r1 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
59 |
| "\<turnstile> v1 : r1 \<Longrightarrow> \<turnstile> Left v1 : ALT r1 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
60 |
| "\<turnstile> v2 : r2 \<Longrightarrow> \<turnstile> Right v2 : ALT r1 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
61 |
| "\<turnstile> Void : EMPTY" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
62 |
| "\<turnstile> Char c : CHAR c" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
63 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
64 |
section {* The string behind a value *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
65 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
66 |
fun flat :: "val \<Rightarrow> string" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
67 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
68 |
"flat(Void) = []" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
69 |
| "flat(Char c) = [c]" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
70 |
| "flat(Left v) = flat(v)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
71 |
| "flat(Right v) = flat(v)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
72 |
| "flat(Seq v1 v2) = flat(v1) @ flat(v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
73 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
74 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
75 |
lemma Prf_flat_L: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
76 |
assumes "\<turnstile> v : r" shows "flat v \<in> L r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
77 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
78 |
apply(induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
79 |
apply(auto simp add: Sequ_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
80 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
81 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
82 |
lemma L_flat_Prf: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
83 |
"L(r) = {flat v | v. \<turnstile> v : r}" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
84 |
apply(induct r) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
85 |
apply(auto dest: Prf_flat_L simp add: Sequ_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
86 |
apply (metis Prf.intros(4) flat.simps(1)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
87 |
apply (metis Prf.intros(5) flat.simps(2)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
88 |
apply (metis Prf.intros(1) flat.simps(5)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
89 |
apply (metis Prf.intros(2) flat.simps(3)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
90 |
apply (metis Prf.intros(3) flat.simps(4)) |
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
91 |
apply(erule Prf.cases) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
92 |
apply(auto) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
93 |
done |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
94 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
95 |
section {* Ordering of values *} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
96 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
97 |
inductive ValOrd :: "val \<Rightarrow> rexp \<Rightarrow> val \<Rightarrow> bool" ("_ \<succ>_ _" [100, 100, 100] 100) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
98 |
where |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
99 |
"\<lbrakk>v1 = v1'; v2 \<succ>r2 v2'\<rbrakk> \<Longrightarrow> (Seq v1 v2) \<succ>(SEQ r1 r2) (Seq v1' v2')" |
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
100 |
| "v1 \<succ>r1 v1' \<Longrightarrow> (Seq v1 v2) \<succ>(SEQ r1 r2) (Seq v1' v2')" |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
101 |
| "length (flat v1) \<ge> length (flat v2) \<Longrightarrow> (Left v1) \<succ>(ALT r1 r2) (Right v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
102 |
| "length (flat v2) > length (flat v1) \<Longrightarrow> (Right v2) \<succ>(ALT r1 r2) (Left v1)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
103 |
| "v2 \<succ>r2 v2' \<Longrightarrow> (Right v2) \<succ>(ALT r1 r2) (Right v2')" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
104 |
| "v1 \<succ>r1 v1' \<Longrightarrow> (Left v1) \<succ>(ALT r1 r2) (Left v1')" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
105 |
| "Void \<succ>EMPTY Void" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
106 |
| "(Char c) \<succ>(CHAR c) (Char c)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
107 |
|
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
108 |
(* |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
109 |
lemma |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
110 |
assumes "r = SEQ (ALT EMPTY EMPTY) (ALT EMPTY (CHAR c))" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
111 |
shows "(Seq (Left Void) (Right (Char c))) \<succ>r (Seq (Left Void) (Left Void))" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
112 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
113 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
114 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
115 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
116 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
117 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
118 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
119 |
done |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
120 |
*) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
121 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
122 |
section {* Posix definition *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
123 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
124 |
definition POSIX :: "val \<Rightarrow> rexp \<Rightarrow> bool" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
125 |
where |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
126 |
"POSIX v r \<equiv> (\<forall>v'. (\<turnstile> v' : r \<and> flat v = flat v') \<longrightarrow> v \<succ>r v')" |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
127 |
|
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
128 |
(* |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
129 |
lemma POSIX_SEQ: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
130 |
assumes "POSIX (Seq v1 v2) (SEQ r1 r2)" "\<turnstile> v1 : r1" "\<turnstile> v2 : r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
131 |
shows "POSIX v1 r1 \<and> POSIX v2 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
132 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
133 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
134 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
135 |
apply(drule_tac x="Seq v' v2" in spec) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
136 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
137 |
apply (smt Prf.intros(1) ValOrd.simps assms(3) rexp.inject(2) val.distinct(15) val.distinct(17) val.distinct(3) val.distinct(9) val.inject(2)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
138 |
apply(drule_tac x="Seq v1 v'" in spec) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
139 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
140 |
by (smt Prf.intros(1) ValOrd.simps rexp.inject(2) val.distinct(15) val.distinct(17) val.distinct(3) val.distinct(9) val.inject(2)) |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
141 |
*) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
142 |
|
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
143 |
(* |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
144 |
lemma POSIX_SEQ_I: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
145 |
assumes "POSIX v1 r1" "POSIX v2 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
146 |
shows "POSIX (Seq v1 v2) (SEQ r1 r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
147 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
148 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
149 |
apply(auto) |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
150 |
apply(rotate_tac 2) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
151 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
152 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
153 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
154 |
apply(rule ValOrd.intros) |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
155 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
156 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
157 |
done |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
158 |
*) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
159 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
160 |
lemma POSIX_ALT: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
161 |
assumes "POSIX (Left v1) (ALT r1 r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
162 |
shows "POSIX v1 r1" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
163 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
164 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
165 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
166 |
apply(drule_tac x="Left v'" in spec) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
167 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
168 |
apply(drule mp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
169 |
apply(rule Prf.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
170 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
171 |
apply(erule ValOrd.cases) |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
172 |
apply(simp_all) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
173 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
174 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
175 |
lemma POSIX_ALT1a: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
176 |
assumes "POSIX (Right v2) (ALT r1 r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
177 |
shows "POSIX v2 r2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
178 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
179 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
180 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
181 |
apply(drule_tac x="Right v'" in spec) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
182 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
183 |
apply(drule mp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
184 |
apply(rule Prf.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
185 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
186 |
apply(erule ValOrd.cases) |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
187 |
apply(simp_all) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
188 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
189 |
|
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
190 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
191 |
lemma POSIX_ALT1b: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
192 |
assumes "POSIX (Right v2) (ALT r1 r2)" |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
193 |
shows "(\<forall>v'. (\<turnstile> v' : r2 \<and> flat v' = flat v2) \<longrightarrow> v2 \<succ>r2 v')" |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
194 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
195 |
apply(drule_tac POSIX_ALT1a) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
196 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
197 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
198 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
199 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
200 |
lemma POSIX_ALT_I1: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
201 |
assumes "POSIX v1 r1" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
202 |
shows "POSIX (Left v1) (ALT r1 r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
203 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
204 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
205 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
206 |
apply(rotate_tac 3) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
207 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
208 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
209 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
210 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
211 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
212 |
apply(rule ValOrd.intros) |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
213 |
by simp |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
214 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
215 |
lemma POSIX_ALT_I2: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
216 |
assumes "POSIX v2 r2" "\<forall>v'. \<turnstile> v' : r1 \<longrightarrow> length (flat v2) > length (flat v')" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
217 |
shows "POSIX (Right v2) (ALT r1 r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
218 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
219 |
unfolding POSIX_def |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
220 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
221 |
apply(rotate_tac 3) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
222 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
223 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
224 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
225 |
apply(rule ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
226 |
apply metis |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
227 |
done |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
228 |
|
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
229 |
|
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
230 |
section {* The ordering is reflexive *} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
231 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
232 |
lemma ValOrd_refl: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
233 |
assumes "\<turnstile> v : r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
234 |
shows "v \<succ>r v" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
235 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
236 |
apply(induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
237 |
apply(auto intro: ValOrd.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
238 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
239 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
240 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
241 |
section {* The Matcher *} |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
242 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
243 |
fun |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
244 |
nullable :: "rexp \<Rightarrow> bool" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
245 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
246 |
"nullable (NULL) = False" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
247 |
| "nullable (EMPTY) = True" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
248 |
| "nullable (CHAR c) = False" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
249 |
| "nullable (ALT r1 r2) = (nullable r1 \<or> nullable r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
250 |
| "nullable (SEQ r1 r2) = (nullable r1 \<and> nullable r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
251 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
252 |
lemma nullable_correctness: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
253 |
shows "nullable r \<longleftrightarrow> [] \<in> (L r)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
254 |
apply (induct r) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
255 |
apply(auto simp add: Sequ_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
256 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
257 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
258 |
fun mkeps :: "rexp \<Rightarrow> val" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
259 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
260 |
"mkeps(EMPTY) = Void" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
261 |
| "mkeps(SEQ r1 r2) = Seq (mkeps r1) (mkeps r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
262 |
| "mkeps(ALT r1 r2) = (if nullable(r1) then Left (mkeps r1) else Right (mkeps r2))" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
263 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
264 |
lemma mkeps_nullable: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
265 |
assumes "nullable(r)" shows "\<turnstile> mkeps r : r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
266 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
267 |
apply(induct rule: nullable.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
268 |
apply(auto intro: Prf.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
269 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
270 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
271 |
lemma mkeps_flat: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
272 |
assumes "nullable(r)" shows "flat (mkeps r) = []" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
273 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
274 |
apply(induct rule: nullable.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
275 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
276 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
277 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
278 |
text {* |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
279 |
The value mkeps returns is always the correct POSIX |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
280 |
value. |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
281 |
*} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
282 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
283 |
lemma mkeps_POSIX: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
284 |
assumes "nullable r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
285 |
shows "POSIX (mkeps r) r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
286 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
287 |
apply(induct r) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
288 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
289 |
apply(simp add: POSIX_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
290 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
291 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
292 |
apply(simp_all)[5] |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
293 |
apply (metis ValOrd.intros) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
294 |
apply(simp add: POSIX_def) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
295 |
apply(auto)[1] |
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
296 |
apply(simp add: POSIX_def) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
297 |
apply(auto)[1] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
298 |
apply(erule Prf.cases) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
299 |
apply(simp_all)[5] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
300 |
apply(auto) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
301 |
apply (simp add: ValOrd.intros(2) mkeps_flat) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
302 |
apply(simp add: POSIX_def) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
303 |
apply(auto)[1] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
304 |
apply(erule Prf.cases) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
305 |
apply(simp_all)[5] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
306 |
apply(auto) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
307 |
apply (simp add: ValOrd.intros(6)) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
308 |
apply (simp add: ValOrd.intros(3)) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
309 |
apply(simp add: POSIX_def) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
310 |
apply(auto)[1] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
311 |
apply(erule Prf.cases) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
312 |
apply(simp_all)[5] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
313 |
apply(auto) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
314 |
apply (simp add: ValOrd.intros(6)) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
315 |
apply (simp add: ValOrd.intros(3)) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
316 |
apply(simp add: POSIX_def) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
317 |
apply(auto)[1] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
318 |
apply(erule Prf.cases) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
319 |
apply(simp_all)[5] |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
320 |
apply(auto) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
321 |
apply (metis Prf_flat_L mkeps_flat nullable_correctness) |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
322 |
by (simp add: ValOrd.intros(5)) |
6
87618dae0e04
getting back the original version by Sulzmann
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
5
diff
changeset
|
323 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
324 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
325 |
section {* Derivatives *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
326 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
327 |
fun |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
328 |
der :: "char \<Rightarrow> rexp \<Rightarrow> rexp" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
329 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
330 |
"der c (NULL) = NULL" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
331 |
| "der c (EMPTY) = NULL" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
332 |
| "der c (CHAR c') = (if c = c' then EMPTY else NULL)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
333 |
| "der c (ALT r1 r2) = ALT (der c r1) (der c r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
334 |
| "der c (SEQ r1 r2) = |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
335 |
(if nullable r1 |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
336 |
then ALT (SEQ (der c r1) r2) (der c r2) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
337 |
else SEQ (der c r1) r2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
338 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
339 |
fun |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
340 |
ders :: "string \<Rightarrow> rexp \<Rightarrow> rexp" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
341 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
342 |
"ders [] r = r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
343 |
| "ders (c # s) r = ders s (der c r)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
344 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
345 |
section {* Injection function *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
346 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
347 |
fun injval :: "rexp \<Rightarrow> char \<Rightarrow> val \<Rightarrow> val" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
348 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
349 |
"injval (CHAR d) c Void = Char d" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
350 |
| "injval (ALT r1 r2) c (Left v1) = Left(injval r1 c v1)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
351 |
| "injval (ALT r1 r2) c (Right v2) = Right(injval r2 c v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
352 |
| "injval (SEQ r1 r2) c (Seq v1 v2) = Seq (injval r1 c v1) v2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
353 |
| "injval (SEQ r1 r2) c (Left (Seq v1 v2)) = Seq (injval r1 c v1) v2" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
354 |
| "injval (SEQ r1 r2) c (Right v2) = Seq (mkeps r1) (injval r2 c v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
355 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
356 |
section {* Projection function *} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
357 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
358 |
fun projval :: "rexp \<Rightarrow> char \<Rightarrow> val \<Rightarrow> val" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
359 |
where |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
360 |
"projval (CHAR d) c _ = Void" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
361 |
| "projval (ALT r1 r2) c (Left v1) = Left(projval r1 c v1)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
362 |
| "projval (ALT r1 r2) c (Right v2) = Right(projval r2 c v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
363 |
| "projval (SEQ r1 r2) c (Seq v1 v2) = |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
364 |
(if flat v1 = [] then Right(projval r2 c v2) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
365 |
else if nullable r1 then Left (Seq (projval r1 c v1) v2) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
366 |
else Seq (projval r1 c v1) v2)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
367 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
368 |
text {* |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
369 |
Injection value is related to r |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
370 |
*} |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
371 |
|
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
372 |
lemma v3: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
373 |
assumes "\<turnstile> v : der c r" shows "\<turnstile> (injval r c v) : r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
374 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
375 |
apply(induct arbitrary: v rule: der.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
376 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
377 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
378 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
379 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
380 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
381 |
apply(case_tac "c = c'") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
382 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
383 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
384 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
385 |
apply (metis Prf.intros(5)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
386 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
387 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
388 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
389 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
390 |
apply (metis Prf.intros(2)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
391 |
apply (metis Prf.intros(3)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
392 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
393 |
apply(case_tac "nullable r1") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
394 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
395 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
396 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
397 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
398 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
399 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
400 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
401 |
apply (metis Prf.intros(1)) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
402 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
403 |
apply (metis Prf.intros(1) mkeps_nullable) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
404 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
405 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
406 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
407 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
408 |
apply(rule Prf.intros) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
409 |
apply(auto)[2] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
410 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
411 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
412 |
text {* |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
413 |
The string behin the injection value is an added c |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
414 |
*} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
415 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
416 |
lemma v4: |
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
417 |
assumes "\<turnstile> v : der c r" shows "flat (injval r c v) = c # (flat v)" |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
418 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
419 |
apply(induct arbitrary: v rule: der.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
420 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
421 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
422 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
423 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
424 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
425 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
426 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
427 |
apply(case_tac "c = c'") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
428 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
429 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
430 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
431 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
432 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
433 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
434 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
435 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
436 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
437 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
438 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
439 |
apply(case_tac "nullable r1") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
440 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
441 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
442 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
443 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
444 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
445 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
446 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
447 |
apply (metis mkeps_flat) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
448 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
449 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
450 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
451 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
452 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
453 |
text {* |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
454 |
Injection followed by projection is the identity. |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
455 |
*} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
456 |
|
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
457 |
lemma proj_inj_id: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
458 |
assumes "\<turnstile> v : der c r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
459 |
shows "projval r c (injval r c v) = v" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
460 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
461 |
apply(induct r arbitrary: c v rule: rexp.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
462 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
463 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
464 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
465 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
466 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
467 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
468 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
469 |
apply(case_tac "c = char") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
470 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
471 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
472 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
473 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
474 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
475 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
476 |
defer |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
477 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
478 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
479 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
480 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
481 |
apply(case_tac "nullable rexp1") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
482 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
483 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
484 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
485 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
486 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
487 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
488 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
489 |
apply (metis list.distinct(1) v4) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
490 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
491 |
apply (metis mkeps_flat) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
492 |
apply(auto) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
493 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
494 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
495 |
apply(auto)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
496 |
apply(simp add: v4) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
497 |
done |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
498 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
499 |
text {* |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
500 |
|
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
501 |
HERE: Crucial lemma that does not go through in the sequence case. |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
502 |
|
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
503 |
*} |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
504 |
lemma v5: |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
505 |
assumes "\<turnstile> v : der c r" "POSIX v (der c r)" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
506 |
shows "POSIX (injval r c v) r" |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
507 |
using assms |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
508 |
apply(induct arbitrary: v rule: der.induct) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
509 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
510 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
511 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
512 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
513 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
514 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
515 |
apply(simp) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
516 |
apply(case_tac "c = c'") |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
517 |
apply(auto simp add: POSIX_def)[1] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
518 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
519 |
apply(simp_all)[5] |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
520 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
521 |
apply(simp_all)[5] |
7
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
522 |
using ValOrd.simps apply blast |
b409ecf47f64
cleaned up the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
6
diff
changeset
|
523 |
apply(auto) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
524 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
525 |
apply(simp_all)[5] |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
526 |
(* base cases done *) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
527 |
(* ALT case *) |
5
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
528 |
apply(erule Prf.cases) |
fe177dfc4697
initial version of the theory
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
529 |
apply(simp_all)[5] |
8
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
530 |
using POSIX_ALT POSIX_ALT_I1 apply blast |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
531 |
apply(frule POSIX_ALT1a) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
532 |
apply(drule POSIX_ALT1b) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
533 |
apply(rule POSIX_ALT_I2) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
534 |
apply auto[1] |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
535 |
apply(subst v4) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
536 |
apply(auto)[2] |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
537 |
apply(rotate_tac 1) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
538 |
apply(drule_tac x="v2" in meta_spec) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
539 |
apply(simp) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
540 |
apply(subst (asm) (4) POSIX_def) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
541 |
apply(subst (asm) v4) |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
542 |
apply(auto)[2] |
a605dda64267
started a few arguments for the ALT case
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
7
diff
changeset
|
543 |
(* stuck in the ALT case *) |