author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Thu, 28 Jan 2016 14:26:10 +0000 | |
changeset 95 | 8d2cc27f45f3 |
parent 68 | db196b066b97 |
child 97 | c7ba70dc49bd |
permissions | -rw-r--r-- |
95
8d2cc27f45f3
changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
68
diff
changeset
|
1 |
(*<*) |
8d2cc27f45f3
changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
68
diff
changeset
|
2 |
theory Implementation |
8d2cc27f45f3
changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
68
diff
changeset
|
3 |
imports PIPBasics |
8d2cc27f45f3
changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
68
diff
changeset
|
4 |
begin |
8d2cc27f45f3
changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
68
diff
changeset
|
5 |
(*>*) |
53
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
45
diff
changeset
|
6 |
section {* |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
45
diff
changeset
|
7 |
This file contains lemmas used to guide the recalculation of current precedence |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
45
diff
changeset
|
8 |
after every system call (or system operation) |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
45
diff
changeset
|
9 |
*} |
63 | 10 |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
11 |
text {* (* ddd *) |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
12 |
One beauty of our modelling is that we follow the definitional extension tradition of HOL. |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
13 |
The benefit of such a concise and miniature model is that large number of intuitively |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
14 |
obvious facts are derived as lemmas, rather than asserted as axioms. |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
15 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
16 |
|
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
17 |
text {* |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
18 |
However, the lemmas in the forthcoming several locales are no longer |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
19 |
obvious. These lemmas show how the current precedences should be recalculated |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
20 |
after every execution step (in our model, every step is represented by an event, |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
21 |
which in turn, represents a system call, or operation). Each operation is |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
22 |
treated in a separate locale. |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
23 |
|
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
24 |
The complication of current precedence recalculation comes |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
25 |
because the changing of RAG needs to be taken into account, |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
26 |
in addition to the changing of precedence. |
68 | 27 |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
28 |
The reason RAG changing affects current precedence is that, |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
29 |
according to the definition, current precedence |
68 | 30 |
of a thread is the maximum of the precedences of every threads in its subtree, |
31 |
where the notion of sub-tree in RAG is defined in RTree.thy. |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
32 |
|
68 | 33 |
Therefore, for each operation, lemmas about the change of precedences |
34 |
and RAG are derived first, on which lemmas about current precedence |
|
35 |
recalculation are based on. |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
36 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
37 |
|
68 | 38 |
section {* The @{term Set} operation *} |
39 |
||
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
40 |
text {* (* ddd *) |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
41 |
The following locale @{text "step_set_cps"} investigates the recalculation |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
42 |
after the @{text "Set"} operation. |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
43 |
*} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
44 |
locale step_set_cps = |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
45 |
fixes s' th prio s |
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
46 |
-- {* @{text "s'"} is the system state before the operation *} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
47 |
-- {* @{text "s"} is the system state after the operation *} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
48 |
defines s_def : "s \<equiv> (Set th prio#s')" |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
49 |
-- {* @{text "s"} is assumed to be a legitimate state, from which |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
50 |
the legitimacy of @{text "s"} can be derived. *} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
51 |
assumes vt_s: "vt s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
52 |
|
61 | 53 |
sublocale step_set_cps < vat_s : valid_trace "s" |
54 |
proof |
|
55 |
from vt_s show "vt s" . |
|
56 |
qed |
|
57 |
||
58 |
sublocale step_set_cps < vat_s' : valid_trace "s'" |
|
59 |
proof |
|
60 |
from step_back_vt[OF vt_s[unfolded s_def]] show "vt s'" . |
|
61 |
qed |
|
62 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
63 |
context step_set_cps |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
64 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
65 |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
66 |
text {* (* ddd *) |
68 | 67 |
The following two lemmas confirm that @{text "Set"}-operation |
68 |
only changes the precedence of the initiating thread (or actor) |
|
69 |
of the operation (or event). |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
70 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
71 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
72 |
lemma eq_preced: |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
73 |
assumes "th' \<noteq> th" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
74 |
shows "preced th' s = preced th' s'" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
75 |
proof - |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
76 |
from assms show ?thesis |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
77 |
by (unfold s_def, auto simp:preced_def) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
78 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
79 |
|
58 | 80 |
lemma eq_the_preced: |
81 |
assumes "th' \<noteq> th" |
|
82 |
shows "the_preced s th' = the_preced s' th'" |
|
83 |
using assms |
|
84 |
by (unfold the_preced_def, intro eq_preced, simp) |
|
85 |
||
86 |
text {* |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
87 |
The following lemma assures that the resetting of priority does not change the RAG. |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
88 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
89 |
|
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
90 |
lemma eq_dep: "RAG s = RAG s'" |
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
91 |
by (unfold s_def RAG_set_unchanged, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
92 |
|
58 | 93 |
text {* (* ddd *) |
68 | 94 |
Th following lemma @{text "eq_cp_pre"} says that the priority change of @{text "th"} |
58 | 95 |
only affects those threads, which as @{text "Th th"} in their sub-trees. |
96 |
||
68 | 97 |
The proof of this lemma is simplified by using the alternative definition |
98 |
of @{text "cp"}. |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
99 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
100 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
101 |
lemma eq_cp_pre: |
58 | 102 |
assumes nd: "Th th \<notin> subtree (RAG s') (Th th')" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
103 |
shows "cp s th' = cp s' th'" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
104 |
proof - |
58 | 105 |
-- {* After unfolding using the alternative definition, elements |
106 |
affecting the @{term "cp"}-value of threads become explicit. |
|
107 |
We only need to prove the following: *} |
|
108 |
have "Max (the_preced s ` {th'a. Th th'a \<in> subtree (RAG s) (Th th')}) = |
|
109 |
Max (the_preced s' ` {th'a. Th th'a \<in> subtree (RAG s') (Th th')})" |
|
110 |
(is "Max (?f ` ?S1) = Max (?g ` ?S2)") |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
111 |
proof - |
58 | 112 |
-- {* The base sets are equal. *} |
113 |
have "?S1 = ?S2" using eq_dep by simp |
|
114 |
-- {* The function values on the base set are equal as well. *} |
|
115 |
moreover have "\<forall> e \<in> ?S2. ?f e = ?g e" |
|
116 |
proof |
|
117 |
fix th1 |
|
118 |
assume "th1 \<in> ?S2" |
|
119 |
with nd have "th1 \<noteq> th" by (auto) |
|
120 |
from eq_the_preced[OF this] |
|
121 |
show "the_preced s th1 = the_preced s' th1" . |
|
122 |
qed |
|
123 |
-- {* Therefore, the image of the functions are equal. *} |
|
124 |
ultimately have "(?f ` ?S1) = (?g ` ?S2)" by (auto intro!:f_image_eq) |
|
125 |
thus ?thesis by simp |
|
126 |
qed |
|
127 |
thus ?thesis by (simp add:cp_alt_def) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
128 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
129 |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
130 |
text {* |
58 | 131 |
The following lemma shows that @{term "th"} is not in the |
132 |
sub-tree of any other thread. |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
133 |
*} |
58 | 134 |
lemma th_in_no_subtree: |
135 |
assumes "th' \<noteq> th" |
|
136 |
shows "Th th \<notin> subtree (RAG s') (Th th')" |
|
137 |
proof - |
|
138 |
have "th \<in> readys s'" |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
139 |
proof - |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
140 |
from step_back_step [OF vt_s[unfolded s_def]] |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
141 |
have "step s' (Set th prio)" . |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
142 |
hence "th \<in> runing s'" by (cases, simp) |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
143 |
thus ?thesis by (simp add:readys_def runing_def) |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
144 |
qed |
61 | 145 |
from vat_s'.readys_in_no_subtree[OF this assms(1)] |
58 | 146 |
show ?thesis by blast |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
147 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
148 |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
149 |
text {* |
58 | 150 |
By combining @{thm "eq_cp_pre"} and @{thm "th_in_no_subtree"}, |
151 |
it is obvious that the change of priority only affects the @{text "cp"}-value |
|
152 |
of the initiating thread @{text "th"}. |
|
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
153 |
*} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
154 |
lemma eq_cp: |
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
155 |
assumes "th' \<noteq> th" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
156 |
shows "cp s th' = cp s' th'" |
58 | 157 |
by (rule eq_cp_pre[OF th_in_no_subtree[OF assms]]) |
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
158 |
|
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
159 |
end |
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
160 |
|
68 | 161 |
section {* The @{term V} operation *} |
162 |
||
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
163 |
text {* |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
164 |
The following @{text "step_v_cps"} is the locale for @{text "V"}-operation. |
55
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
165 |
*} |
b85cfbd58f59
Comments for Set-operation finished
xingyuan zhang <xingyuanzhang@126.com>
parents:
53
diff
changeset
|
166 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
167 |
locale step_v_cps = |
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
168 |
-- {* @{text "th"} is the initiating thread *} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
169 |
-- {* @{text "cs"} is the critical resource release by the @{text "V"}-operation *} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
170 |
fixes s' th cs s -- {* @{text "s'"} is the state before operation*} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
171 |
defines s_def : "s \<equiv> (V th cs#s')" -- {* @{text "s"} is the state after operation*} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
172 |
-- {* @{text "s"} is assumed to be valid, which implies the validity of @{text "s'"} *} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
173 |
assumes vt_s: "vt s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
174 |
|
61 | 175 |
sublocale step_v_cps < vat_s : valid_trace "s" |
58 | 176 |
proof |
61 | 177 |
from vt_s show "vt s" . |
58 | 178 |
qed |
179 |
||
61 | 180 |
sublocale step_v_cps < vat_s' : valid_trace "s'" |
58 | 181 |
proof |
61 | 182 |
from step_back_vt[OF vt_s[unfolded s_def]] show "vt s'" . |
58 | 183 |
qed |
184 |
||
61 | 185 |
context step_v_cps |
186 |
begin |
|
58 | 187 |
|
188 |
lemma ready_th_s': "th \<in> readys s'" |
|
189 |
using step_back_step[OF vt_s[unfolded s_def]] |
|
190 |
by (cases, simp add:runing_def) |
|
191 |
||
192 |
lemma ancestors_th: "ancestors (RAG s') (Th th) = {}" |
|
193 |
proof - |
|
61 | 194 |
from vat_s'.readys_root[OF ready_th_s'] |
58 | 195 |
show ?thesis |
196 |
by (unfold root_def, simp) |
|
197 |
qed |
|
198 |
||
199 |
lemma holding_th: "holding s' th cs" |
|
200 |
proof - |
|
201 |
from vt_s[unfolded s_def] |
|
202 |
have " PIP s' (V th cs)" by (cases, simp) |
|
203 |
thus ?thesis by (cases, auto) |
|
204 |
qed |
|
205 |
||
206 |
lemma edge_of_th: |
|
207 |
"(Cs cs, Th th) \<in> RAG s'" |
|
208 |
proof - |
|
209 |
from holding_th |
|
210 |
show ?thesis |
|
211 |
by (unfold s_RAG_def holding_eq, auto) |
|
212 |
qed |
|
213 |
||
214 |
lemma ancestors_cs: |
|
215 |
"ancestors (RAG s') (Cs cs) = {Th th}" |
|
216 |
proof - |
|
217 |
have "ancestors (RAG s') (Cs cs) = ancestors (RAG s') (Th th) \<union> {Th th}" |
|
61 | 218 |
proof(rule vat_s'.rtree_RAG.ancestors_accum) |
58 | 219 |
from vt_s[unfolded s_def] |
220 |
have " PIP s' (V th cs)" by (cases, simp) |
|
221 |
thus "(Cs cs, Th th) \<in> RAG s'" |
|
222 |
proof(cases) |
|
223 |
assume "holding s' th cs" |
|
224 |
from this[unfolded holding_eq] |
|
225 |
show ?thesis by (unfold s_RAG_def, auto) |
|
226 |
qed |
|
227 |
qed |
|
228 |
from this[unfolded ancestors_th] show ?thesis by simp |
|
229 |
qed |
|
230 |
||
231 |
lemma preced_kept: "the_preced s = the_preced s'" |
|
232 |
by (auto simp: s_def the_preced_def preced_def) |
|
233 |
||
234 |
end |
|
235 |
||
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
236 |
text {* |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
237 |
The following @{text "step_v_cps_nt"} is the sub-locale for @{text "V"}-operation, |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
238 |
which represents the case when there is another thread @{text "th'"} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
239 |
to take over the critical resource released by the initiating thread @{text "th"}. |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
240 |
*} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
241 |
locale step_v_cps_nt = step_v_cps + |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
242 |
fixes th' |
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
243 |
-- {* @{text "th'"} is assumed to take over @{text "cs"} *} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
244 |
assumes nt: "next_th s' th cs th'" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
245 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
246 |
context step_v_cps_nt |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
247 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
248 |
|
56
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
249 |
text {* |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
250 |
Lemma @{text "RAG_s"} confirms the change of RAG: |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
251 |
two edges removed and one added, as shown by the following diagram. |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
252 |
*} |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
253 |
|
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
254 |
(* |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
255 |
RAG before the V-operation |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
256 |
th1 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
257 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
258 |
th' ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
259 |
|----> cs -----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
260 |
th2 ----| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
261 |
| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
262 |
th3 ----| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
263 |
|------> th |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
264 |
th4 ----| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
265 |
| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
266 |
th5 ----| | |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
267 |
|----> cs'-----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
268 |
th6 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
269 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
270 |
th7 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
271 |
|
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
272 |
RAG after the V-operation |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
273 |
th1 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
274 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
275 |
|----> cs ----> th' |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
276 |
th2 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
277 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
278 |
th3 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
279 |
|
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
280 |
th4 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
281 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
282 |
th5 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
283 |
|----> cs'----> th |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
284 |
th6 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
285 |
| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
286 |
th7 ----| |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
287 |
*) |
0fd478e14e87
Before switching to generic theory of relational trees.
xingyuan zhang <xingyuanzhang@126.com>
parents:
55
diff
changeset
|
288 |
|
58 | 289 |
lemma sub_RAGs': "{(Cs cs, Th th), (Th th', Cs cs)} \<subseteq> RAG s'" |
63 | 290 |
using next_th_RAG[OF nt] . |
58 | 291 |
|
292 |
lemma ancestors_th': |
|
293 |
"ancestors (RAG s') (Th th') = {Th th, Cs cs}" |
|
294 |
proof - |
|
295 |
have "ancestors (RAG s') (Th th') = ancestors (RAG s') (Cs cs) \<union> {Cs cs}" |
|
61 | 296 |
proof(rule vat_s'.rtree_RAG.ancestors_accum) |
58 | 297 |
from sub_RAGs' show "(Th th', Cs cs) \<in> RAG s'" by auto |
298 |
qed |
|
299 |
thus ?thesis using ancestors_th ancestors_cs by auto |
|
300 |
qed |
|
301 |
||
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
302 |
lemma RAG_s: |
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
303 |
"RAG s = (RAG s' - {(Cs cs, Th th), (Th th', Cs cs)}) \<union> |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
304 |
{(Cs cs, Th th')}" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
305 |
proof - |
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
306 |
from step_RAG_v[OF vt_s[unfolded s_def], folded s_def] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
307 |
and nt show ?thesis by (auto intro:next_th_unique) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
308 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
309 |
|
68 | 310 |
lemma subtree_kept: (* ddd *) |
58 | 311 |
assumes "th1 \<notin> {th, th'}" |
312 |
shows "subtree (RAG s) (Th th1) = subtree (RAG s') (Th th1)" (is "_ = ?R") |
|
313 |
proof - |
|
314 |
let ?RAG' = "(RAG s' - {(Cs cs, Th th), (Th th', Cs cs)})" |
|
315 |
let ?RAG'' = "?RAG' \<union> {(Cs cs, Th th')}" |
|
316 |
have "subtree ?RAG' (Th th1) = ?R" |
|
317 |
proof(rule subset_del_subtree_outside) |
|
318 |
show "Range {(Cs cs, Th th), (Th th', Cs cs)} \<inter> subtree (RAG s') (Th th1) = {}" |
|
319 |
proof - |
|
320 |
have "(Th th) \<notin> subtree (RAG s') (Th th1)" |
|
321 |
proof(rule subtree_refute) |
|
322 |
show "Th th1 \<notin> ancestors (RAG s') (Th th)" |
|
323 |
by (unfold ancestors_th, simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
324 |
next |
58 | 325 |
from assms show "Th th1 \<noteq> Th th" by simp |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
326 |
qed |
58 | 327 |
moreover have "(Cs cs) \<notin> subtree (RAG s') (Th th1)" |
328 |
proof(rule subtree_refute) |
|
329 |
show "Th th1 \<notin> ancestors (RAG s') (Cs cs)" |
|
330 |
by (unfold ancestors_cs, insert assms, auto) |
|
331 |
qed simp |
|
332 |
ultimately have "{Th th, Cs cs} \<inter> subtree (RAG s') (Th th1) = {}" by auto |
|
333 |
thus ?thesis by simp |
|
334 |
qed |
|
335 |
qed |
|
336 |
moreover have "subtree ?RAG'' (Th th1) = subtree ?RAG' (Th th1)" |
|
337 |
proof(rule subtree_insert_next) |
|
338 |
show "Th th' \<notin> subtree (RAG s' - {(Cs cs, Th th), (Th th', Cs cs)}) (Th th1)" |
|
339 |
proof(rule subtree_refute) |
|
340 |
show "Th th1 \<notin> ancestors (RAG s' - {(Cs cs, Th th), (Th th', Cs cs)}) (Th th')" |
|
341 |
(is "_ \<notin> ?R") |
|
342 |
proof - |
|
343 |
have "?R \<subseteq> ancestors (RAG s') (Th th')" by (rule ancestors_mono, auto) |
|
344 |
moreover have "Th th1 \<notin> ..." using ancestors_th' assms by simp |
|
345 |
ultimately show ?thesis by auto |
|
346 |
qed |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
347 |
next |
58 | 348 |
from assms show "Th th1 \<noteq> Th th'" by simp |
349 |
qed |
|
350 |
qed |
|
351 |
ultimately show ?thesis by (unfold RAG_s, simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
352 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
353 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
354 |
lemma cp_kept: |
58 | 355 |
assumes "th1 \<notin> {th, th'}" |
356 |
shows "cp s th1 = cp s' th1" |
|
357 |
by (unfold cp_alt_def preced_kept subtree_kept[OF assms], simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
358 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
359 |
end |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
360 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
361 |
locale step_v_cps_nnt = step_v_cps + |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
362 |
assumes nnt: "\<And> th'. (\<not> next_th s' th cs th')" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
363 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
364 |
context step_v_cps_nnt |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
365 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
366 |
|
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
367 |
lemma RAG_s: "RAG s = RAG s' - {(Cs cs, Th th)}" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
368 |
proof - |
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
369 |
from nnt and step_RAG_v[OF vt_s[unfolded s_def], folded s_def] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
370 |
show ?thesis by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
371 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
372 |
|
58 | 373 |
lemma subtree_kept: |
374 |
assumes "th1 \<noteq> th" |
|
375 |
shows "subtree (RAG s) (Th th1) = subtree (RAG s') (Th th1)" |
|
376 |
proof(unfold RAG_s, rule subset_del_subtree_outside) |
|
377 |
show "Range {(Cs cs, Th th)} \<inter> subtree (RAG s') (Th th1) = {}" |
|
378 |
proof - |
|
379 |
have "(Th th) \<notin> subtree (RAG s') (Th th1)" |
|
380 |
proof(rule subtree_refute) |
|
381 |
show "Th th1 \<notin> ancestors (RAG s') (Th th)" |
|
382 |
by (unfold ancestors_th, simp) |
|
383 |
next |
|
384 |
from assms show "Th th1 \<noteq> Th th" by simp |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
385 |
qed |
58 | 386 |
thus ?thesis by auto |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
387 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
388 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
389 |
|
58 | 390 |
lemma cp_kept_1: |
391 |
assumes "th1 \<noteq> th" |
|
392 |
shows "cp s th1 = cp s' th1" |
|
393 |
by (unfold cp_alt_def preced_kept subtree_kept[OF assms], simp) |
|
394 |
||
395 |
lemma subtree_cs: "subtree (RAG s') (Cs cs) = {Cs cs}" |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
396 |
proof - |
58 | 397 |
{ fix n |
398 |
have "(Cs cs) \<notin> ancestors (RAG s') n" |
|
399 |
proof |
|
400 |
assume "Cs cs \<in> ancestors (RAG s') n" |
|
401 |
hence "(n, Cs cs) \<in> (RAG s')^+" by (auto simp:ancestors_def) |
|
402 |
from tranclE[OF this] obtain nn where h: "(nn, Cs cs) \<in> RAG s'" by auto |
|
403 |
then obtain th' where "nn = Th th'" |
|
404 |
by (unfold s_RAG_def, auto) |
|
405 |
from h[unfolded this] have "(Th th', Cs cs) \<in> RAG s'" . |
|
406 |
from this[unfolded s_RAG_def] |
|
407 |
have "waiting (wq s') th' cs" by auto |
|
408 |
from this[unfolded cs_waiting_def] |
|
409 |
have "1 < length (wq s' cs)" |
|
410 |
by (cases "wq s' cs", auto) |
|
411 |
from holding_next_thI[OF holding_th this] |
|
412 |
obtain th' where "next_th s' th cs th'" by auto |
|
413 |
with nnt show False by auto |
|
414 |
qed |
|
415 |
} note h = this |
|
416 |
{ fix n |
|
417 |
assume "n \<in> subtree (RAG s') (Cs cs)" |
|
418 |
hence "n = (Cs cs)" |
|
419 |
by (elim subtreeE, insert h, auto) |
|
420 |
} moreover have "(Cs cs) \<in> subtree (RAG s') (Cs cs)" |
|
421 |
by (auto simp:subtree_def) |
|
422 |
ultimately show ?thesis by auto |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
423 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
424 |
|
58 | 425 |
lemma subtree_th: |
426 |
"subtree (RAG s) (Th th) = subtree (RAG s') (Th th) - {Cs cs}" |
|
61 | 427 |
proof(unfold RAG_s, fold subtree_cs, rule vat_s'.rtree_RAG.subtree_del_inside) |
58 | 428 |
from edge_of_th |
429 |
show "(Cs cs, Th th) \<in> edges_in (RAG s') (Th th)" |
|
430 |
by (unfold edges_in_def, auto simp:subtree_def) |
|
431 |
qed |
|
432 |
||
433 |
lemma cp_kept_2: |
|
434 |
shows "cp s th = cp s' th" |
|
435 |
by (unfold cp_alt_def subtree_th preced_kept, auto) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
436 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
437 |
lemma eq_cp: |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
438 |
shows "cp s th' = cp s' th'" |
58 | 439 |
using cp_kept_1 cp_kept_2 |
440 |
by (cases "th' = th", auto) |
|
441 |
end |
|
442 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
443 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
444 |
locale step_P_cps = |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
445 |
fixes s' th cs s |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
446 |
defines s_def : "s \<equiv> (P th cs#s')" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
447 |
assumes vt_s: "vt s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
448 |
|
58 | 449 |
sublocale step_P_cps < vat_s : valid_trace "s" |
450 |
proof |
|
451 |
from vt_s show "vt s" . |
|
452 |
qed |
|
453 |
||
68 | 454 |
section {* The @{term P} operation *} |
455 |
||
58 | 456 |
sublocale step_P_cps < vat_s' : valid_trace "s'" |
457 |
proof |
|
458 |
from step_back_vt[OF vt_s[unfolded s_def]] show "vt s'" . |
|
459 |
qed |
|
460 |
||
461 |
context step_P_cps |
|
462 |
begin |
|
463 |
||
60 | 464 |
lemma readys_th: "th \<in> readys s'" |
465 |
proof - |
|
466 |
from step_back_step [OF vt_s[unfolded s_def]] |
|
467 |
have "PIP s' (P th cs)" . |
|
468 |
hence "th \<in> runing s'" by (cases, simp) |
|
469 |
thus ?thesis by (simp add:readys_def runing_def) |
|
58 | 470 |
qed |
471 |
||
60 | 472 |
lemma root_th: "root (RAG s') (Th th)" |
61 | 473 |
using readys_root[OF readys_th] . |
60 | 474 |
|
475 |
lemma in_no_others_subtree: |
|
476 |
assumes "th' \<noteq> th" |
|
477 |
shows "Th th \<notin> subtree (RAG s') (Th th')" |
|
58 | 478 |
proof |
60 | 479 |
assume "Th th \<in> subtree (RAG s') (Th th')" |
480 |
thus False |
|
481 |
proof(cases rule:subtreeE) |
|
482 |
case 1 |
|
483 |
with assms show ?thesis by auto |
|
484 |
next |
|
485 |
case 2 |
|
486 |
with root_th show ?thesis by (auto simp:root_def) |
|
487 |
qed |
|
58 | 488 |
qed |
489 |
||
490 |
lemma preced_kept: "the_preced s = the_preced s'" |
|
491 |
by (auto simp: s_def the_preced_def preced_def) |
|
492 |
||
493 |
end |
|
494 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
495 |
locale step_P_cps_ne =step_P_cps + |
58 | 496 |
fixes th' |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
497 |
assumes ne: "wq s' cs \<noteq> []" |
58 | 498 |
defines th'_def: "th' \<equiv> hd (wq s' cs)" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
499 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
500 |
locale step_P_cps_e =step_P_cps + |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
501 |
assumes ee: "wq s' cs = []" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
502 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
503 |
context step_P_cps_e |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
504 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
505 |
|
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
506 |
lemma RAG_s: "RAG s = RAG s' \<union> {(Cs cs, Th th)}" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
507 |
proof - |
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
508 |
from ee and step_RAG_p[OF vt_s[unfolded s_def], folded s_def] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
509 |
show ?thesis by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
510 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
511 |
|
60 | 512 |
lemma subtree_kept: |
513 |
assumes "th' \<noteq> th" |
|
514 |
shows "subtree (RAG s) (Th th') = subtree (RAG s') (Th th')" |
|
515 |
proof(unfold RAG_s, rule subtree_insert_next) |
|
516 |
from in_no_others_subtree[OF assms] |
|
517 |
show "Th th \<notin> subtree (RAG s') (Th th')" . |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
518 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
519 |
|
60 | 520 |
lemma cp_kept: |
521 |
assumes "th' \<noteq> th" |
|
522 |
shows "cp s th' = cp s' th'" |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
523 |
proof - |
60 | 524 |
have "(the_preced s ` {th'a. Th th'a \<in> subtree (RAG s) (Th th')}) = |
525 |
(the_preced s' ` {th'a. Th th'a \<in> subtree (RAG s') (Th th')})" |
|
526 |
by (unfold preced_kept subtree_kept[OF assms], simp) |
|
527 |
thus ?thesis by (unfold cp_alt_def, simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
528 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
529 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
530 |
end |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
531 |
|
58 | 532 |
context step_P_cps_ne |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
533 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
534 |
|
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
535 |
lemma RAG_s: "RAG s = RAG s' \<union> {(Th th, Cs cs)}" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
536 |
proof - |
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
537 |
from step_RAG_p[OF vt_s[unfolded s_def]] and ne |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
538 |
show ?thesis by (simp add:s_def) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
539 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
540 |
|
58 | 541 |
lemma cs_held: "(Cs cs, Th th') \<in> RAG s'" |
542 |
proof - |
|
543 |
have "(Cs cs, Th th') \<in> hRAG s'" |
|
544 |
proof - |
|
545 |
from ne |
|
546 |
have " holding s' th' cs" |
|
547 |
by (unfold th'_def holding_eq cs_holding_def, auto) |
|
548 |
thus ?thesis |
|
549 |
by (unfold hRAG_def, auto) |
|
550 |
qed |
|
551 |
thus ?thesis by (unfold RAG_split, auto) |
|
552 |
qed |
|
553 |
||
554 |
lemma tRAG_s: |
|
555 |
"tRAG s = tRAG s' \<union> {(Th th, Th th')}" |
|
63 | 556 |
using RAG_tRAG_transfer[OF RAG_s cs_held] . |
58 | 557 |
|
558 |
lemma cp_kept: |
|
559 |
assumes "Th th'' \<notin> ancestors (tRAG s) (Th th)" |
|
560 |
shows "cp s th'' = cp s' th''" |
|
561 |
proof - |
|
562 |
have h: "subtree (tRAG s) (Th th'') = subtree (tRAG s') (Th th'')" |
|
563 |
proof - |
|
564 |
have "Th th' \<notin> subtree (tRAG s') (Th th'')" |
|
565 |
proof |
|
566 |
assume "Th th' \<in> subtree (tRAG s') (Th th'')" |
|
567 |
thus False |
|
568 |
proof(rule subtreeE) |
|
569 |
assume "Th th' = Th th''" |
|
570 |
from assms[unfolded tRAG_s ancestors_def, folded this] |
|
571 |
show ?thesis by auto |
|
572 |
next |
|
573 |
assume "Th th'' \<in> ancestors (tRAG s') (Th th')" |
|
574 |
moreover have "... \<subseteq> ancestors (tRAG s) (Th th')" |
|
575 |
proof(rule ancestors_mono) |
|
576 |
show "tRAG s' \<subseteq> tRAG s" by (unfold tRAG_s, auto) |
|
577 |
qed |
|
578 |
ultimately have "Th th'' \<in> ancestors (tRAG s) (Th th')" by auto |
|
579 |
moreover have "Th th' \<in> ancestors (tRAG s) (Th th)" |
|
580 |
by (unfold tRAG_s, auto simp:ancestors_def) |
|
581 |
ultimately have "Th th'' \<in> ancestors (tRAG s) (Th th)" |
|
582 |
by (auto simp:ancestors_def) |
|
583 |
with assms show ?thesis by auto |
|
584 |
qed |
|
585 |
qed |
|
586 |
from subtree_insert_next[OF this] |
|
587 |
have "subtree (tRAG s' \<union> {(Th th, Th th')}) (Th th'') = subtree (tRAG s') (Th th'')" . |
|
588 |
from this[folded tRAG_s] show ?thesis . |
|
589 |
qed |
|
590 |
show ?thesis by (unfold cp_alt_def1 h preced_kept, simp) |
|
591 |
qed |
|
592 |
||
60 | 593 |
lemma cp_gen_update_stop: (* ddd *) |
58 | 594 |
assumes "u \<in> ancestors (tRAG s) (Th th)" |
595 |
and "cp_gen s u = cp_gen s' u" |
|
596 |
and "y \<in> ancestors (tRAG s) u" |
|
597 |
shows "cp_gen s y = cp_gen s' y" |
|
598 |
using assms(3) |
|
599 |
proof(induct rule:wf_induct[OF vat_s.fsbttRAGs.wf]) |
|
600 |
case (1 x) |
|
601 |
show ?case (is "?L = ?R") |
|
602 |
proof - |
|
603 |
from tRAG_ancestorsE[OF 1(2)] |
|
604 |
obtain th2 where eq_x: "x = Th th2" by blast |
|
605 |
from vat_s.cp_gen_rec[OF this] |
|
606 |
have "?L = |
|
607 |
Max ({the_preced s th2} \<union> cp_gen s ` RTree.children (tRAG s) x)" . |
|
608 |
also have "... = |
|
609 |
Max ({the_preced s' th2} \<union> cp_gen s' ` RTree.children (tRAG s') x)" |
|
59
0a069a667301
removed some fixes about which Isabelle complains
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
58
diff
changeset
|
610 |
|
58 | 611 |
proof - |
612 |
from preced_kept have "the_preced s th2 = the_preced s' th2" by simp |
|
613 |
moreover have "cp_gen s ` RTree.children (tRAG s) x = |
|
614 |
cp_gen s' ` RTree.children (tRAG s') x" |
|
615 |
proof - |
|
616 |
have "RTree.children (tRAG s) x = RTree.children (tRAG s') x" |
|
617 |
proof(unfold tRAG_s, rule children_union_kept) |
|
618 |
have start: "(Th th, Th th') \<in> tRAG s" |
|
619 |
by (unfold tRAG_s, auto) |
|
620 |
note x_u = 1(2) |
|
621 |
show "x \<notin> Range {(Th th, Th th')}" |
|
622 |
proof |
|
623 |
assume "x \<in> Range {(Th th, Th th')}" |
|
624 |
hence eq_x: "x = Th th'" using RangeE by auto |
|
625 |
show False |
|
626 |
proof(cases rule:vat_s.rtree_s.ancestors_headE[OF assms(1) start]) |
|
627 |
case 1 |
|
628 |
from x_u[folded this, unfolded eq_x] vat_s.acyclic_tRAG |
|
629 |
show ?thesis by (auto simp:ancestors_def acyclic_def) |
|
630 |
next |
|
631 |
case 2 |
|
632 |
with x_u[unfolded eq_x] |
|
633 |
have "(Th th', Th th') \<in> (tRAG s)^+" by (auto simp:ancestors_def) |
|
634 |
with vat_s.acyclic_tRAG show ?thesis by (auto simp:acyclic_def) |
|
635 |
qed |
|
636 |
qed |
|
637 |
qed |
|
638 |
moreover have "cp_gen s ` RTree.children (tRAG s) x = |
|
639 |
cp_gen s' ` RTree.children (tRAG s) x" (is "?f ` ?A = ?g ` ?A") |
|
640 |
proof(rule f_image_eq) |
|
641 |
fix a |
|
642 |
assume a_in: "a \<in> ?A" |
|
643 |
from 1(2) |
|
644 |
show "?f a = ?g a" |
|
645 |
proof(cases rule:vat_s.rtree_s.ancestors_childrenE[case_names in_ch out_ch]) |
|
646 |
case in_ch |
|
647 |
show ?thesis |
|
648 |
proof(cases "a = u") |
|
649 |
case True |
|
650 |
from assms(2)[folded this] show ?thesis . |
|
651 |
next |
|
652 |
case False |
|
653 |
have a_not_in: "a \<notin> ancestors (tRAG s) (Th th)" |
|
654 |
proof |
|
655 |
assume a_in': "a \<in> ancestors (tRAG s) (Th th)" |
|
656 |
have "a = u" |
|
657 |
proof(rule vat_s.rtree_s.ancestors_children_unique) |
|
658 |
from a_in' a_in show "a \<in> ancestors (tRAG s) (Th th) \<inter> |
|
659 |
RTree.children (tRAG s) x" by auto |
|
660 |
next |
|
661 |
from assms(1) in_ch show "u \<in> ancestors (tRAG s) (Th th) \<inter> |
|
662 |
RTree.children (tRAG s) x" by auto |
|
663 |
qed |
|
664 |
with False show False by simp |
|
665 |
qed |
|
666 |
from a_in obtain th_a where eq_a: "a = Th th_a" |
|
667 |
by (unfold RTree.children_def tRAG_alt_def, auto) |
|
668 |
from cp_kept[OF a_not_in[unfolded eq_a]] |
|
669 |
have "cp s th_a = cp s' th_a" . |
|
670 |
from this [unfolded cp_gen_def_cond[OF eq_a], folded eq_a] |
|
671 |
show ?thesis . |
|
672 |
qed |
|
673 |
next |
|
674 |
case (out_ch z) |
|
675 |
hence h: "z \<in> ancestors (tRAG s) u" "z \<in> RTree.children (tRAG s) x" by auto |
|
676 |
show ?thesis |
|
677 |
proof(cases "a = z") |
|
678 |
case True |
|
679 |
from h(2) have zx_in: "(z, x) \<in> (tRAG s)" by (auto simp:RTree.children_def) |
|
680 |
from 1(1)[rule_format, OF this h(1)] |
|
681 |
have eq_cp_gen: "cp_gen s z = cp_gen s' z" . |
|
682 |
with True show ?thesis by metis |
|
683 |
next |
|
684 |
case False |
|
685 |
from a_in obtain th_a where eq_a: "a = Th th_a" |
|
686 |
by (auto simp:RTree.children_def tRAG_alt_def) |
|
60 | 687 |
have "a \<notin> ancestors (tRAG s) (Th th)" |
688 |
proof |
|
689 |
assume a_in': "a \<in> ancestors (tRAG s) (Th th)" |
|
690 |
have "a = z" |
|
691 |
proof(rule vat_s.rtree_s.ancestors_children_unique) |
|
692 |
from assms(1) h(1) have "z \<in> ancestors (tRAG s) (Th th)" |
|
693 |
by (auto simp:ancestors_def) |
|
694 |
with h(2) show " z \<in> ancestors (tRAG s) (Th th) \<inter> |
|
695 |
RTree.children (tRAG s) x" by auto |
|
696 |
next |
|
697 |
from a_in a_in' |
|
698 |
show "a \<in> ancestors (tRAG s) (Th th) \<inter> RTree.children (tRAG s) x" |
|
699 |
by auto |
|
700 |
qed |
|
701 |
with False show False by auto |
|
702 |
qed |
|
58 | 703 |
from cp_kept[OF this[unfolded eq_a]] |
704 |
have "cp s th_a = cp s' th_a" . |
|
705 |
from this[unfolded cp_gen_def_cond[OF eq_a], folded eq_a] |
|
706 |
show ?thesis . |
|
707 |
qed |
|
708 |
qed |
|
709 |
qed |
|
710 |
ultimately show ?thesis by metis |
|
711 |
qed |
|
712 |
ultimately show ?thesis by simp |
|
713 |
qed |
|
714 |
also have "... = ?R" |
|
715 |
by (fold vat_s'.cp_gen_rec[OF eq_x], simp) |
|
716 |
finally show ?thesis . |
|
717 |
qed |
|
718 |
qed |
|
719 |
||
60 | 720 |
lemma cp_up: |
721 |
assumes "(Th th') \<in> ancestors (tRAG s) (Th th)" |
|
722 |
and "cp s th' = cp s' th'" |
|
723 |
and "(Th th'') \<in> ancestors (tRAG s) (Th th')" |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
724 |
shows "cp s th'' = cp s' th''" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
725 |
proof - |
60 | 726 |
have "cp_gen s (Th th'') = cp_gen s' (Th th'')" |
727 |
proof(rule cp_gen_update_stop[OF assms(1) _ assms(3)]) |
|
728 |
from assms(2) cp_gen_def_cond[OF refl[of "Th th'"]] |
|
729 |
show "cp_gen s (Th th') = cp_gen s' (Th th')" by metis |
|
730 |
qed |
|
731 |
with cp_gen_def_cond[OF refl[of "Th th''"]] |
|
732 |
show ?thesis by metis |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
733 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
734 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
735 |
end |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
736 |
|
68 | 737 |
section {* The @{term Create} operation *} |
738 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
739 |
locale step_create_cps = |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
740 |
fixes s' th prio s |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
741 |
defines s_def : "s \<equiv> (Create th prio#s')" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
742 |
assumes vt_s: "vt s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
743 |
|
60 | 744 |
sublocale step_create_cps < vat_s: valid_trace "s" |
745 |
by (unfold_locales, insert vt_s, simp) |
|
746 |
||
747 |
sublocale step_create_cps < vat_s': valid_trace "s'" |
|
748 |
by (unfold_locales, insert step_back_vt[OF vt_s[unfolded s_def]], simp) |
|
749 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
750 |
context step_create_cps |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
751 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
752 |
|
60 | 753 |
lemma RAG_kept: "RAG s = RAG s'" |
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
754 |
by (unfold s_def RAG_create_unchanged, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
755 |
|
60 | 756 |
lemma tRAG_kept: "tRAG s = tRAG s'" |
757 |
by (unfold tRAG_alt_def RAG_kept, auto) |
|
758 |
||
759 |
lemma preced_kept: |
|
760 |
assumes "th' \<noteq> th" |
|
761 |
shows "the_preced s th' = the_preced s' th'" |
|
762 |
by (unfold s_def the_preced_def preced_def, insert assms, auto) |
|
763 |
||
764 |
lemma th_not_in: "Th th \<notin> Field (tRAG s')" |
|
765 |
proof - |
|
766 |
from vt_s[unfolded s_def] |
|
767 |
have "PIP s' (Create th prio)" by (cases, simp) |
|
768 |
hence "th \<notin> threads s'" by(cases, simp) |
|
769 |
from vat_s'.not_in_thread_isolated[OF this] |
|
770 |
have "Th th \<notin> Field (RAG s')" . |
|
771 |
with tRAG_Field show ?thesis by auto |
|
772 |
qed |
|
773 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
774 |
lemma eq_cp: |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
775 |
assumes neq_th: "th' \<noteq> th" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
776 |
shows "cp s th' = cp s' th'" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
777 |
proof - |
60 | 778 |
have "(the_preced s \<circ> the_thread) ` subtree (tRAG s) (Th th') = |
779 |
(the_preced s' \<circ> the_thread) ` subtree (tRAG s') (Th th')" |
|
780 |
proof(unfold tRAG_kept, rule f_image_eq) |
|
781 |
fix a |
|
782 |
assume a_in: "a \<in> subtree (tRAG s') (Th th')" |
|
783 |
then obtain th_a where eq_a: "a = Th th_a" |
|
784 |
proof(cases rule:subtreeE) |
|
785 |
case 2 |
|
786 |
from ancestors_Field[OF 2(2)] |
|
787 |
and that show ?thesis by (unfold tRAG_alt_def, auto) |
|
788 |
qed auto |
|
789 |
have neq_th_a: "th_a \<noteq> th" |
|
790 |
proof - |
|
791 |
have "(Th th) \<notin> subtree (tRAG s') (Th th')" |
|
792 |
proof |
|
793 |
assume "Th th \<in> subtree (tRAG s') (Th th')" |
|
794 |
thus False |
|
795 |
proof(cases rule:subtreeE) |
|
796 |
case 2 |
|
797 |
from ancestors_Field[OF this(2)] |
|
798 |
and th_not_in[unfolded Field_def] |
|
799 |
show ?thesis by auto |
|
800 |
qed (insert assms, auto) |
|
801 |
qed |
|
802 |
with a_in[unfolded eq_a] show ?thesis by auto |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
803 |
qed |
60 | 804 |
from preced_kept[OF this] |
805 |
show "(the_preced s \<circ> the_thread) a = (the_preced s' \<circ> the_thread) a" |
|
806 |
by (unfold eq_a, simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
807 |
qed |
60 | 808 |
thus ?thesis by (unfold cp_alt_def1, simp) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
809 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
810 |
|
60 | 811 |
lemma children_of_th: "RTree.children (tRAG s) (Th th) = {}" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
812 |
proof - |
60 | 813 |
{ fix a |
814 |
assume "a \<in> RTree.children (tRAG s) (Th th)" |
|
815 |
hence "(a, Th th) \<in> tRAG s" by (auto simp:RTree.children_def) |
|
816 |
with th_not_in have False |
|
817 |
by (unfold Field_def tRAG_kept, auto) |
|
818 |
} thus ?thesis by auto |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
819 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
820 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
821 |
lemma eq_cp_th: "cp s th = preced th s" |
60 | 822 |
by (unfold vat_s.cp_rec children_of_th, simp add:the_preced_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
823 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
824 |
end |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
825 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
826 |
locale step_exit_cps = |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
827 |
fixes s' th prio s |
33
9b9f2117561f
simplified the cp_rec proof
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
32
diff
changeset
|
828 |
defines s_def : "s \<equiv> Exit th # s'" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
829 |
assumes vt_s: "vt s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
830 |
|
60 | 831 |
sublocale step_exit_cps < vat_s: valid_trace "s" |
832 |
by (unfold_locales, insert vt_s, simp) |
|
833 |
||
834 |
sublocale step_exit_cps < vat_s': valid_trace "s'" |
|
835 |
by (unfold_locales, insert step_back_vt[OF vt_s[unfolded s_def]], simp) |
|
836 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
837 |
context step_exit_cps |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
838 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
839 |
|
60 | 840 |
lemma preced_kept: |
841 |
assumes "th' \<noteq> th" |
|
842 |
shows "the_preced s th' = the_preced s' th'" |
|
843 |
by (unfold s_def the_preced_def preced_def, insert assms, auto) |
|
844 |
||
845 |
lemma RAG_kept: "RAG s = RAG s'" |
|
35
92f61f6a0fe7
added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
33
diff
changeset
|
846 |
by (unfold s_def RAG_exit_unchanged, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
847 |
|
60 | 848 |
lemma tRAG_kept: "tRAG s = tRAG s'" |
849 |
by (unfold tRAG_alt_def RAG_kept, auto) |
|
850 |
||
851 |
lemma th_ready: "th \<in> readys s'" |
|
852 |
proof - |
|
853 |
from vt_s[unfolded s_def] |
|
854 |
have "PIP s' (Exit th)" by (cases, simp) |
|
855 |
hence h: "th \<in> runing s' \<and> holdents s' th = {}" by (cases, metis) |
|
856 |
thus ?thesis by (unfold runing_def, auto) |
|
857 |
qed |
|
858 |
||
859 |
lemma th_holdents: "holdents s' th = {}" |
|
860 |
proof - |
|
861 |
from vt_s[unfolded s_def] |
|
862 |
have "PIP s' (Exit th)" by (cases, simp) |
|
863 |
thus ?thesis by (cases, metis) |
|
864 |
qed |
|
865 |
||
866 |
lemma th_RAG: "Th th \<notin> Field (RAG s')" |
|
867 |
proof - |
|
868 |
have "Th th \<notin> Range (RAG s')" |
|
869 |
proof |
|
870 |
assume "Th th \<in> Range (RAG s')" |
|
871 |
then obtain cs where "holding (wq s') th cs" |
|
872 |
by (unfold Range_iff s_RAG_def, auto) |
|
873 |
with th_holdents[unfolded holdents_def] |
|
874 |
show False by (unfold eq_holding, auto) |
|
875 |
qed |
|
876 |
moreover have "Th th \<notin> Domain (RAG s')" |
|
877 |
proof |
|
878 |
assume "Th th \<in> Domain (RAG s')" |
|
879 |
then obtain cs where "waiting (wq s') th cs" |
|
880 |
by (unfold Domain_iff s_RAG_def, auto) |
|
881 |
with th_ready show False by (unfold readys_def eq_waiting, auto) |
|
882 |
qed |
|
883 |
ultimately show ?thesis by (auto simp:Field_def) |
|
884 |
qed |
|
885 |
||
886 |
lemma th_tRAG: "(Th th) \<notin> Field (tRAG s')" |
|
887 |
using th_RAG tRAG_Field[of s'] by auto |
|
888 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
889 |
lemma eq_cp: |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
890 |
assumes neq_th: "th' \<noteq> th" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
891 |
shows "cp s th' = cp s' th'" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
892 |
proof - |
60 | 893 |
have "(the_preced s \<circ> the_thread) ` subtree (tRAG s) (Th th') = |
894 |
(the_preced s' \<circ> the_thread) ` subtree (tRAG s') (Th th')" |
|
895 |
proof(unfold tRAG_kept, rule f_image_eq) |
|
896 |
fix a |
|
897 |
assume a_in: "a \<in> subtree (tRAG s') (Th th')" |
|
898 |
then obtain th_a where eq_a: "a = Th th_a" |
|
899 |
proof(cases rule:subtreeE) |
|
900 |
case 2 |
|
901 |
from ancestors_Field[OF 2(2)] |
|
902 |
and that show ?thesis by (unfold tRAG_alt_def, auto) |
|
903 |
qed auto |
|
904 |
have neq_th_a: "th_a \<noteq> th" |
|
905 |
proof - |
|
61 | 906 |
from vat_s'.readys_in_no_subtree[OF th_ready assms] |
60 | 907 |
have "(Th th) \<notin> subtree (RAG s') (Th th')" . |
908 |
with tRAG_subtree_RAG[of s' "Th th'"] |
|
909 |
have "(Th th) \<notin> subtree (tRAG s') (Th th')" by auto |
|
910 |
with a_in[unfolded eq_a] show ?thesis by auto |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
911 |
qed |
60 | 912 |
from preced_kept[OF this] |
913 |
show "(the_preced s \<circ> the_thread) a = (the_preced s' \<circ> the_thread) a" |
|
914 |
by (unfold eq_a, simp) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
915 |
qed |
60 | 916 |
thus ?thesis by (unfold cp_alt_def1, simp) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
917 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
918 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
919 |
end |
60 | 920 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
921 |
end |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
922 |