author | Christian Urban <christian dot urban at kcl dot ac dot uk> |
Thu, 09 Jun 2016 23:01:36 +0100 | |
changeset 127 | 38c6acf03f68 |
parent 125 | 95e7933968f8 |
child 128 | 5d8ec128518b |
permissions | -rw-r--r-- |
93
524bd3caa6b6
The overwriten original .thy files are working now. The ones in last revision aren't.
zhangx
parents:
92
diff
changeset
|
1 |
theory PIPBasics |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
2 |
imports PIPDefs |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3 |
begin |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4 |
|
117 | 5 |
text {* (* ddd *) |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
6 |
|
117 | 7 |
Following the HOL convention of {\em definitional extension}, we have |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
8 |
given a concise and miniature model of PIP. To assure ourselves of the |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
9 |
correctness of this model, we are going to derive a series of expected |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
10 |
properties out of it. |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
11 |
|
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
12 |
This file contains the very basic properties, useful for self-assurance, |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
13 |
as well as for deriving more advance properties concerning the correctness |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
14 |
and implementation of PIP. *} |
117 | 15 |
|
16 |
||
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
17 |
section {* Generic auxiliary lemmas *} |
99 | 18 |
|
108 | 19 |
lemma rel_eqI: |
20 |
assumes "\<And> x y. (x,y) \<in> A \<Longrightarrow> (x,y) \<in> B" |
|
21 |
and "\<And> x y. (x,y) \<in> B \<Longrightarrow> (x, y) \<in> A" |
|
22 |
shows "A = B" |
|
23 |
using assms by auto |
|
24 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
25 |
lemma f_image_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
26 |
assumes h: "\<And> a. a \<in> A \<Longrightarrow> f a = g a" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
27 |
shows "f ` A = g ` A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
28 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
29 |
show "f ` A \<subseteq> g ` A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
30 |
by(rule image_subsetI, auto intro:h) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
31 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
32 |
show "g ` A \<subseteq> f ` A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
33 |
by (rule image_subsetI, auto intro:h[symmetric]) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
34 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
35 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
36 |
lemma Max_fg_mono: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
37 |
assumes "finite A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
38 |
and "\<forall> a \<in> A. f a \<le> g a" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
39 |
shows "Max (f ` A) \<le> Max (g ` A)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
40 |
proof(cases "A = {}") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
41 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
42 |
thus ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
43 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
44 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
45 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
46 |
proof(rule Max.boundedI) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
47 |
from assms show "finite (f ` A)" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
48 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
49 |
from False show "f ` A \<noteq> {}" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
50 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
51 |
fix fa |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
52 |
assume "fa \<in> f ` A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
53 |
then obtain a where h_fa: "a \<in> A" "fa = f a" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
54 |
show "fa \<le> Max (g ` A)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
55 |
proof(rule Max_ge_iff[THEN iffD2]) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
56 |
from assms show "finite (g ` A)" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
57 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
58 |
from False show "g ` A \<noteq> {}" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
59 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
60 |
from h_fa have "g a \<in> g ` A" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
61 |
moreover have "fa \<le> g a" using h_fa assms(2) by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
62 |
ultimately show "\<exists>a\<in>g ` A. fa \<le> a" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
63 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
64 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
65 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
66 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
67 |
lemma Max_f_mono: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
68 |
assumes seq: "A \<subseteq> B" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
69 |
and np: "A \<noteq> {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
70 |
and fnt: "finite B" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
71 |
shows "Max (f ` A) \<le> Max (f ` B)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
72 |
proof(rule Max_mono) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
73 |
from seq show "f ` A \<subseteq> f ` B" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
74 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
75 |
from np show "f ` A \<noteq> {}" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
76 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
77 |
from fnt and seq show "finite (f ` B)" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
78 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
79 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
80 |
lemma Max_UNION: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
81 |
assumes "finite A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
82 |
and "A \<noteq> {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
83 |
and "\<forall> M \<in> f ` A. finite M" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
84 |
and "\<forall> M \<in> f ` A. M \<noteq> {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
85 |
shows "Max (\<Union>x\<in> A. f x) = Max (Max ` f ` A)" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
86 |
using assms[simp] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
87 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
88 |
have "?L = Max (\<Union>(f ` A))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
89 |
by (fold Union_image_eq, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
90 |
also have "... = ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
91 |
by (subst Max_Union, simp+) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
92 |
finally show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
93 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
94 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
95 |
lemma max_Max_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
96 |
assumes "finite A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
97 |
and "A \<noteq> {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
98 |
and "x = y" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
99 |
shows "max x (Max A) = Max ({y} \<union> A)" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
100 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
101 |
have "?R = Max (insert y A)" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
102 |
also from assms have "... = ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
103 |
by (subst Max.insert, simp+) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
104 |
finally show ?thesis by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
105 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
106 |
|
99 | 107 |
section {* Lemmas do not depend on trace validity *} |
108 |
||
108 | 109 |
text {* The following lemma serves to proof @{text "preced_tm_lt"} *} |
110 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
111 |
lemma birth_time_lt: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
112 |
assumes "s \<noteq> []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
113 |
shows "last_set th s < length s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
114 |
using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
115 |
proof(induct s) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
116 |
case (Cons a s) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
117 |
show ?case |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
118 |
proof(cases "s \<noteq> []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
119 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
120 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
121 |
by (cases a, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
122 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
123 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
124 |
show ?thesis using Cons(1)[OF True] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
125 |
by (cases a, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
126 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
127 |
qed simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
128 |
|
108 | 129 |
text {* The following lemma also serves to proof @{text "preced_tm_lt"} *} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
130 |
lemma th_in_ne: "th \<in> threads s \<Longrightarrow> s \<noteq> []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
131 |
by (induct s, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
132 |
|
108 | 133 |
text {* The following lemma is used in Correctness.thy *} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
134 |
lemma preced_tm_lt: "th \<in> threads s \<Longrightarrow> preced th s = Prc x y \<Longrightarrow> y < length s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
135 |
by (drule_tac th_in_ne, unfold preced_def, auto intro: birth_time_lt) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
136 |
|
108 | 137 |
text {* |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
138 |
|
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
139 |
The following lemma says that if a resource is waited for, it must be held |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
140 |
by someone else. *} |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
141 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
142 |
lemma waiting_holding: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
143 |
assumes "waiting (s::state) th cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
144 |
obtains th' where "holding s th' cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
145 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
146 |
from assms[unfolded s_waiting_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
147 |
obtain th' where "th' \<in> set (wq s cs)" "th' = hd (wq s cs)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
148 |
by (metis empty_iff hd_in_set list.set(1)) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
149 |
hence "holding s th' cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
150 |
by (unfold s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
151 |
from that[OF this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
152 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
153 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
154 |
|
108 | 155 |
text {* |
156 |
The following @{text "children_RAG_alt_def"} relates |
|
157 |
@{term children} in @{term RAG} to the notion of @{term holding}. |
|
158 |
It is a technical lemmas used to prove the two following lemmas. |
|
159 |
*} |
|
101 | 160 |
lemma children_RAG_alt_def: |
161 |
"children (RAG (s::state)) (Th th) = Cs ` {cs. holding s th cs}" |
|
162 |
by (unfold s_RAG_def, auto simp:children_def holding_eq) |
|
163 |
||
108 | 164 |
text {* |
165 |
The following two lemmas relate @{term holdents} and @{term cntCS} |
|
166 |
to @{term children} in @{term RAG}, so that proofs about |
|
167 |
@{term holdents} and @{term cntCS} can be carried out under |
|
168 |
the support of the abstract theory of {\em relational graph} |
|
169 |
(and specifically {\em relational tree} and {\em relational forest}). |
|
170 |
*} |
|
101 | 171 |
lemma holdents_alt_def: |
172 |
"holdents s th = the_cs ` (children (RAG (s::state)) (Th th))" |
|
173 |
by (unfold children_RAG_alt_def holdents_def, simp add: image_image) |
|
174 |
||
175 |
lemma cntCS_alt_def: |
|
176 |
"cntCS s th = card (children (RAG s) (Th th))" |
|
177 |
apply (unfold children_RAG_alt_def cntCS_def holdents_def) |
|
178 |
by (rule card_image[symmetric], auto simp:inj_on_def) |
|
179 |
||
108 | 180 |
text {* |
181 |
The following two lemmas show the inclusion relations |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
182 |
among three key sets, namely @{term running}, @{term readys} |
108 | 183 |
and @{term threads}. |
184 |
*} |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
185 |
lemma running_ready: |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
186 |
shows "running s \<subseteq> readys s" |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
187 |
unfolding running_def readys_def |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
188 |
by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
189 |
|
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
190 |
lemma readys_threads: |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
191 |
shows "readys s \<subseteq> threads s" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
192 |
unfolding readys_def |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
193 |
by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
194 |
|
108 | 195 |
text {* |
196 |
The following lemma says that if a thread is running, |
|
197 |
it must be the head of every waiting queue it is in. |
|
198 |
In other words, a running thread must have got every |
|
199 |
resource it has requested. |
|
200 |
*} |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
201 |
lemma running_wqE: |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
202 |
assumes "th \<in> running s" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
203 |
and "th \<in> set (wq s cs)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
204 |
obtains rest where "wq s cs = th#rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
205 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
206 |
from assms(2) obtain th' rest where eq_wq: "wq s cs = th'#rest" |
107
30ed212f268a
updated Correctness, Implementation and PIPBasics so that they work with Isabelle 2014 and 2015
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
106
diff
changeset
|
207 |
by (metis empty_iff list.exhaust list.set(1)) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
208 |
have "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
209 |
proof(rule ccontr) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
210 |
assume "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
211 |
hence "th \<noteq> hd (wq s cs)" using eq_wq by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
212 |
with assms(2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
213 |
have "waiting s th cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
214 |
by (unfold s_waiting_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
215 |
with assms show False |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
216 |
by (unfold running_def readys_def, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
217 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
218 |
with eq_wq that show ?thesis by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
219 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
220 |
|
100 | 221 |
text {* |
222 |
Every thread can only be blocked on one critical resource, |
|
223 |
symmetrically, every critical resource can only be held by one thread. |
|
224 |
This fact is much more easier according to our definition. |
|
225 |
*} |
|
226 |
lemma held_unique: |
|
227 |
assumes "holding (s::event list) th1 cs" |
|
228 |
and "holding s th2 cs" |
|
229 |
shows "th1 = th2" |
|
230 |
by (insert assms, unfold s_holding_def, auto) |
|
231 |
||
108 | 232 |
text {* |
233 |
The following three lemmas establishes the uniqueness of |
|
234 |
precedence, a key property about precedence. |
|
235 |
The first two are just technical lemmas to assist the proof |
|
236 |
of the third. |
|
237 |
*} |
|
100 | 238 |
lemma last_set_lt: "th \<in> threads s \<Longrightarrow> last_set th s < length s" |
239 |
apply (induct s, auto) |
|
240 |
by (case_tac a, auto split:if_splits) |
|
241 |
||
242 |
lemma last_set_unique: |
|
243 |
"\<lbrakk>last_set th1 s = last_set th2 s; th1 \<in> threads s; th2 \<in> threads s\<rbrakk> |
|
244 |
\<Longrightarrow> th1 = th2" |
|
245 |
apply (induct s, auto) |
|
246 |
by (case_tac a, auto split:if_splits dest:last_set_lt) |
|
247 |
||
248 |
lemma preced_unique : |
|
249 |
assumes pcd_eq: "preced th1 s = preced th2 s" |
|
250 |
and th_in1: "th1 \<in> threads s" |
|
251 |
and th_in2: " th2 \<in> threads s" |
|
252 |
shows "th1 = th2" |
|
253 |
proof - |
|
254 |
from pcd_eq have "last_set th1 s = last_set th2 s" by (simp add:preced_def) |
|
255 |
from last_set_unique [OF this th_in1 th_in2] |
|
256 |
show ?thesis . |
|
257 |
qed |
|
108 | 258 |
|
259 |
text {* |
|
260 |
The following lemma shows that there exits a linear order |
|
261 |
on precedences, which is crucial for the notion of |
|
262 |
@{term Max} to be applicable. |
|
263 |
*} |
|
100 | 264 |
lemma preced_linorder: |
265 |
assumes neq_12: "th1 \<noteq> th2" |
|
266 |
and th_in1: "th1 \<in> threads s" |
|
267 |
and th_in2: " th2 \<in> threads s" |
|
268 |
shows "preced th1 s < preced th2 s \<or> preced th1 s > preced th2 s" |
|
269 |
proof - |
|
270 |
from preced_unique [OF _ th_in1 th_in2] and neq_12 |
|
271 |
have "preced th1 s \<noteq> preced th2 s" by auto |
|
272 |
thus ?thesis by auto |
|
273 |
qed |
|
274 |
||
108 | 275 |
text {* |
276 |
The following lemma case analysis the situations when |
|
277 |
two nodes are in @{term RAG}. |
|
278 |
*} |
|
100 | 279 |
lemma in_RAG_E: |
280 |
assumes "(n1, n2) \<in> RAG (s::state)" |
|
281 |
obtains (waiting) th cs where "n1 = Th th" "n2 = Cs cs" "waiting s th cs" |
|
282 |
| (holding) th cs where "n1 = Cs cs" "n2 = Th th" "holding s th cs" |
|
283 |
using assms[unfolded s_RAG_def, folded waiting_eq holding_eq] |
|
284 |
by auto |
|
285 |
||
108 | 286 |
text {* |
287 |
The following lemmas are the simplification rules |
|
288 |
for @{term count}, @{term cntP}, @{term cntV}. |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
289 |
It is part of the scheme to use the counting |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
290 |
of @{term "P"} and @{term "V"} operations to reason about |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
291 |
the number of resources occupied by one thread. |
108 | 292 |
*} |
293 |
||
101 | 294 |
lemma count_rec1 [simp]: |
295 |
assumes "Q e" |
|
296 |
shows "count Q (e#es) = Suc (count Q es)" |
|
297 |
using assms |
|
298 |
by (unfold count_def, auto) |
|
299 |
||
300 |
lemma count_rec2 [simp]: |
|
301 |
assumes "\<not>Q e" |
|
302 |
shows "count Q (e#es) = (count Q es)" |
|
303 |
using assms |
|
304 |
by (unfold count_def, auto) |
|
305 |
||
306 |
lemma count_rec3 [simp]: |
|
307 |
shows "count Q [] = 0" |
|
308 |
by (unfold count_def, auto) |
|
309 |
||
310 |
lemma cntP_simp1[simp]: |
|
311 |
"cntP (P th cs'#s) th = cntP s th + 1" |
|
312 |
by (unfold cntP_def, simp) |
|
313 |
||
314 |
lemma cntP_simp2[simp]: |
|
315 |
assumes "th' \<noteq> th" |
|
316 |
shows "cntP (P th cs'#s) th' = cntP s th'" |
|
317 |
using assms |
|
318 |
by (unfold cntP_def, simp) |
|
319 |
||
320 |
lemma cntP_simp3[simp]: |
|
321 |
assumes "\<not> isP e" |
|
322 |
shows "cntP (e#s) th' = cntP s th'" |
|
323 |
using assms |
|
324 |
by (unfold cntP_def, cases e, simp+) |
|
325 |
||
326 |
lemma cntV_simp1[simp]: |
|
327 |
"cntV (V th cs'#s) th = cntV s th + 1" |
|
328 |
by (unfold cntV_def, simp) |
|
329 |
||
330 |
lemma cntV_simp2[simp]: |
|
331 |
assumes "th' \<noteq> th" |
|
332 |
shows "cntV (V th cs'#s) th' = cntV s th'" |
|
333 |
using assms |
|
334 |
by (unfold cntV_def, simp) |
|
335 |
||
336 |
lemma cntV_simp3[simp]: |
|
337 |
assumes "\<not> isV e" |
|
338 |
shows "cntV (e#s) th' = cntV s th'" |
|
339 |
using assms |
|
340 |
by (unfold cntV_def, cases e, simp+) |
|
341 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
342 |
text {* |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
343 |
The following two lemmas show that only @{term P} |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
344 |
and @{term V} operation can change the value |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
345 |
of @{term cntP} and @{term cntV}, which is true |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
346 |
obviously. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
347 |
*} |
101 | 348 |
lemma cntP_diff_inv: |
349 |
assumes "cntP (e#s) th \<noteq> cntP s th" |
|
116 | 350 |
obtains cs where "e = P th cs" |
101 | 351 |
proof(cases e) |
352 |
case (P th' pty) |
|
116 | 353 |
show ?thesis using that |
101 | 354 |
by (cases "(\<lambda>e. \<exists>cs. e = P th cs) (P th' pty)", |
355 |
insert assms P, auto simp:cntP_def) |
|
356 |
qed (insert assms, auto simp:cntP_def) |
|
357 |
||
358 |
lemma cntV_diff_inv: |
|
359 |
assumes "cntV (e#s) th \<noteq> cntV s th" |
|
116 | 360 |
obtains cs' where "e = V th cs'" |
101 | 361 |
proof(cases e) |
362 |
case (V th' pty) |
|
116 | 363 |
show ?thesis using that |
101 | 364 |
by (cases "(\<lambda>e. \<exists>cs. e = V th cs) (V th' pty)", |
365 |
insert assms V, auto simp:cntV_def) |
|
366 |
qed (insert assms, auto simp:cntV_def) |
|
367 |
||
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
368 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
369 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
370 |
The following three lemmas shows the shape |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
371 |
of nodes in @{term tRAG}. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
372 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
373 |
lemma tRAG_nodeE: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
374 |
assumes "(n1, n2) \<in> tRAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
375 |
obtains th1 th2 where "n1 = Th th1" "n2 = Th th2" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
376 |
using assms |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
377 |
by (auto simp: tRAG_def wRAG_def hRAG_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
378 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
379 |
lemma tRAG_ancestorsE: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
380 |
assumes "x \<in> ancestors (tRAG s) u" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
381 |
obtains th where "x = Th th" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
382 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
383 |
from assms have "(u, x) \<in> (tRAG s)^+" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
384 |
by (unfold ancestors_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
385 |
from tranclE[OF this] obtain c where "(c, x) \<in> tRAG s" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
386 |
then obtain th where "x = Th th" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
387 |
by (unfold tRAG_alt_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
388 |
from that[OF this] show ?thesis . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
389 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
390 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
391 |
lemma subtree_nodeE: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
392 |
assumes "n \<in> subtree (tRAG s) (Th th)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
393 |
obtains th1 where "n = Th th1" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
394 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
395 |
show ?thesis |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
396 |
proof(rule subtreeE[OF assms]) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
397 |
assume "n = Th th" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
398 |
from that[OF this] show ?thesis . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
399 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
400 |
assume "Th th \<in> ancestors (tRAG s) n" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
401 |
hence "(n, Th th) \<in> (tRAG s)^+" by (auto simp:ancestors_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
402 |
hence "\<exists> th1. n = Th th1" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
403 |
proof(induct) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
404 |
case (base y) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
405 |
from tRAG_nodeE[OF this] show ?case by metis |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
406 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
407 |
case (step y z) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
408 |
thus ?case by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
409 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
410 |
with that show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
411 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
412 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
413 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
414 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
415 |
The following lemmas relate @{term tRAG} with |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
416 |
@{term RAG} from different perspectives. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
417 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
418 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
419 |
lemma tRAG_star_RAG: "(tRAG s)^* \<subseteq> (RAG s)^*" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
420 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
421 |
have "(wRAG s O hRAG s)^* \<subseteq> (RAG s O RAG s)^*" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
422 |
by (rule rtrancl_mono, auto simp:RAG_split) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
423 |
also have "... \<subseteq> ((RAG s)^*)^*" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
424 |
by (rule rtrancl_mono, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
425 |
also have "... = (RAG s)^*" by simp |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
426 |
finally show ?thesis by (unfold tRAG_def, simp) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
427 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
428 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
429 |
lemma tRAG_subtree_RAG: "subtree (tRAG s) x \<subseteq> subtree (RAG s) x" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
430 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
431 |
{ fix a |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
432 |
assume "a \<in> subtree (tRAG s) x" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
433 |
hence "(a, x) \<in> (tRAG s)^*" by (auto simp:subtree_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
434 |
with tRAG_star_RAG |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
435 |
have "(a, x) \<in> (RAG s)^*" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
436 |
hence "a \<in> subtree (RAG s) x" by (auto simp:subtree_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
437 |
} thus ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
438 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
439 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
440 |
lemma tRAG_trancl_eq: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
441 |
"{th'. (Th th', Th th) \<in> (tRAG s)^+} = |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
442 |
{th'. (Th th', Th th) \<in> (RAG s)^+}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
443 |
(is "?L = ?R") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
444 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
445 |
{ fix th' |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
446 |
assume "th' \<in> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
447 |
hence "(Th th', Th th) \<in> (tRAG s)^+" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
448 |
from tranclD[OF this] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
449 |
obtain z where h: "(Th th', z) \<in> tRAG s" "(z, Th th) \<in> (tRAG s)\<^sup>*" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
450 |
from tRAG_subtree_RAG and this(2) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
451 |
have "(z, Th th) \<in> (RAG s)^*" by (meson subsetCE tRAG_star_RAG) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
452 |
moreover from h(1) have "(Th th', z) \<in> (RAG s)^+" using tRAG_alt_def by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
453 |
ultimately have "th' \<in> ?R" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
454 |
} moreover |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
455 |
{ fix th' |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
456 |
assume "th' \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
457 |
hence "(Th th', Th th) \<in> (RAG s)^+" by (auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
458 |
from plus_rpath[OF this] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
459 |
obtain xs where rp: "rpath (RAG s) (Th th') xs (Th th)" "xs \<noteq> []" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
460 |
hence "(Th th', Th th) \<in> (tRAG s)^+" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
461 |
proof(induct xs arbitrary:th' th rule:length_induct) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
462 |
case (1 xs th' th) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
463 |
then obtain x1 xs1 where Cons1: "xs = x1#xs1" by (cases xs, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
464 |
show ?case |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
465 |
proof(cases "xs1") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
466 |
case Nil |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
467 |
from 1(2)[unfolded Cons1 Nil] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
468 |
have rp: "rpath (RAG s) (Th th') [x1] (Th th)" . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
469 |
hence "(Th th', x1) \<in> (RAG s)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
470 |
by (cases, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
471 |
then obtain cs where "x1 = Cs cs" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
472 |
by (unfold s_RAG_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
473 |
from rpath_nnl_lastE[OF rp[unfolded this]] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
474 |
show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
475 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
476 |
case (Cons x2 xs2) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
477 |
from 1(2)[unfolded Cons1[unfolded this]] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
478 |
have rp: "rpath (RAG s) (Th th') (x1 # x2 # xs2) (Th th)" . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
479 |
from rpath_edges_on[OF this] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
480 |
have eds: "edges_on (Th th' # x1 # x2 # xs2) \<subseteq> RAG s" . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
481 |
have "(Th th', x1) \<in> edges_on (Th th' # x1 # x2 # xs2)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
482 |
by (simp add: edges_on_unfold) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
483 |
with eds have rg1: "(Th th', x1) \<in> RAG s" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
484 |
then obtain cs1 where eq_x1: "x1 = Cs cs1" by (unfold s_RAG_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
485 |
have "(x1, x2) \<in> edges_on (Th th' # x1 # x2 # xs2)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
486 |
by (simp add: edges_on_unfold) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
487 |
from this eds |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
488 |
have rg2: "(x1, x2) \<in> RAG s" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
489 |
from this[unfolded eq_x1] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
490 |
obtain th1 where eq_x2: "x2 = Th th1" by (unfold s_RAG_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
491 |
from rg1[unfolded eq_x1] rg2[unfolded eq_x1 eq_x2] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
492 |
have rt1: "(Th th', Th th1) \<in> tRAG s" by (unfold tRAG_alt_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
493 |
from rp have "rpath (RAG s) x2 xs2 (Th th)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
494 |
by (elim rpath_ConsE, simp) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
495 |
from this[unfolded eq_x2] have rp': "rpath (RAG s) (Th th1) xs2 (Th th)" . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
496 |
show ?thesis |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
497 |
proof(cases "xs2 = []") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
498 |
case True |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
499 |
from rpath_nilE[OF rp'[unfolded this]] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
500 |
have "th1 = th" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
501 |
from rt1[unfolded this] show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
502 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
503 |
case False |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
504 |
from 1(1)[rule_format, OF _ rp' this, unfolded Cons1 Cons] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
505 |
have "(Th th1, Th th) \<in> (tRAG s)\<^sup>+" by simp |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
506 |
with rt1 show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
507 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
508 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
509 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
510 |
hence "th' \<in> ?L" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
511 |
} ultimately show ?thesis by blast |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
512 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
513 |
|
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
514 |
lemma image_eq: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
515 |
assumes "A = B" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
516 |
shows "f ` A = f ` B" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
517 |
using assms by auto |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
518 |
|
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
519 |
lemma tRAG_trancl_eq_Th: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
520 |
"{Th th' | th'. (Th th', Th th) \<in> (tRAG s)^+} = |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
521 |
{Th th' | th'. (Th th', Th th) \<in> (RAG s)^+}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
522 |
using tRAG_trancl_eq by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
523 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
524 |
lemma tRAG_Field: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
525 |
"Field (tRAG s) \<subseteq> Field (RAG s)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
526 |
by (unfold tRAG_alt_def Field_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
527 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
528 |
lemma tRAG_mono: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
529 |
assumes "RAG s' \<subseteq> RAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
530 |
shows "tRAG s' \<subseteq> tRAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
531 |
using assms |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
532 |
by (unfold tRAG_alt_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
533 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
534 |
lemma tRAG_subtree_eq: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
535 |
"(subtree (tRAG s) (Th th)) = {Th th' | th'. Th th' \<in> (subtree (RAG s) (Th th))}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
536 |
(is "?L = ?R") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
537 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
538 |
{ fix n |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
539 |
assume h: "n \<in> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
540 |
hence "n \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
541 |
by (smt mem_Collect_eq subsetCE subtree_def subtree_nodeE tRAG_subtree_RAG) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
542 |
} moreover { |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
543 |
fix n |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
544 |
assume "n \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
545 |
then obtain th' where h: "n = Th th'" "(Th th', Th th) \<in> (RAG s)^*" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
546 |
by (auto simp:subtree_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
547 |
from rtranclD[OF this(2)] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
548 |
have "n \<in> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
549 |
proof |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
550 |
assume "Th th' \<noteq> Th th \<and> (Th th', Th th) \<in> (RAG s)\<^sup>+" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
551 |
with h have "n \<in> {Th th' | th'. (Th th', Th th) \<in> (RAG s)^+}" by auto |
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
552 |
thus ?thesis using subtree_def tRAG_trancl_eq |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
553 |
by fastforce (* ccc *) |
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
554 |
qed (insert h, auto simp:subtree_def) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
555 |
} ultimately show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
556 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
557 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
558 |
lemma threads_set_eq: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
559 |
"the_thread ` (subtree (tRAG s) (Th th)) = |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
560 |
{th'. Th th' \<in> (subtree (RAG s) (Th th))}" (is "?L = ?R") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
561 |
by (auto intro:rev_image_eqI simp:tRAG_subtree_eq) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
562 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
563 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
564 |
The following lemmas is an alternative definition of @{term cp}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
565 |
which is based on the notion of subtrees in @{term RAG} and |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
566 |
is handy to use once the abstract theory of {\em relational graph} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
567 |
(and specifically {\em relational tree} and {\em relational forest}) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
568 |
are in place. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
569 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
570 |
lemma cp_alt_def: |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
571 |
"cp s th = Max ((the_preced s) ` {th'. Th th' \<in> (subtree (RAG s) (Th th))})" |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
572 |
proof - |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
573 |
have "Max (the_preced s ` ({th} \<union> dependants s th)) = |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
574 |
Max (the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)})" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
575 |
(is "Max (_ ` ?L) = Max (_ ` ?R)") |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
576 |
proof - |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
577 |
have "?L = ?R" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
578 |
unfolding subtree_def |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
579 |
apply(auto) |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
580 |
apply (simp add: s_RAG_abv s_dependants_def wq_def) |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
581 |
by (simp add: rtrancl_eq_or_trancl s_RAG_abv s_dependants_def wq_def) |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
582 |
thus ?thesis by simp |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
583 |
qed |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
584 |
thus ?thesis |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
585 |
by (metis (no_types, lifting) cp_eq cpreced_def eq_dependants |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
586 |
f_image_eq the_preced_def) |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
587 |
qed |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
588 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
589 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
590 |
The following is another definition of @{term cp}. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
591 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
592 |
lemma cp_alt_def1: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
593 |
"cp s th = Max ((the_preced s o the_thread) ` (subtree (tRAG s) (Th th)))" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
594 |
proof - |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
595 |
have "(the_preced s ` the_thread ` subtree (tRAG s) (Th th)) = |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
596 |
((the_preced s \<circ> the_thread) ` subtree (tRAG s) (Th th))" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
597 |
by auto |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
598 |
thus ?thesis by (unfold cp_alt_def, fold threads_set_eq, auto) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
599 |
qed |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
600 |
|
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
601 |
lemma RAG_tRAG_transfer: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
602 |
assumes "RAG s' = RAG s \<union> {(Th th, Cs cs)}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
603 |
and "(Cs cs, Th th'') \<in> RAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
604 |
shows "tRAG s' = tRAG s \<union> {(Th th, Th th'')}" (is "?L = ?R") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
605 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
606 |
{ fix n1 n2 |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
607 |
assume "(n1, n2) \<in> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
608 |
from this[unfolded tRAG_alt_def] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
609 |
obtain th1 th2 cs' where |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
610 |
h: "n1 = Th th1" "n2 = Th th2" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
611 |
"(Th th1, Cs cs') \<in> RAG s'" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
612 |
"(Cs cs', Th th2) \<in> RAG s'" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
613 |
from h(4) and assms(1) have cs_in: "(Cs cs', Th th2) \<in> RAG s" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
614 |
from h(3) and assms(1) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
615 |
have "(Th th1, Cs cs') = (Th th, Cs cs) \<or> |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
616 |
(Th th1, Cs cs') \<in> RAG s" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
617 |
hence "(n1, n2) \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
618 |
proof |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
619 |
assume h1: "(Th th1, Cs cs') = (Th th, Cs cs)" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
620 |
with assms(1) have "(Th th1, Cs cs) \<in> RAG s'" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
621 |
moreover have "th2 = th''" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
622 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
623 |
from h1 have "cs' = cs" by simp |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
624 |
from assms(2) cs_in[unfolded this] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
625 |
have "holding s th'' cs" "holding s th2 cs" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
626 |
by (unfold s_RAG_def, fold holding_eq, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
627 |
from held_unique[OF this] |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
628 |
show ?thesis by simp |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
629 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
630 |
ultimately show ?thesis using h(1,2) h1 by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
631 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
632 |
assume "(Th th1, Cs cs') \<in> RAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
633 |
with cs_in have "(Th th1, Th th2) \<in> tRAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
634 |
by (unfold tRAG_alt_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
635 |
from this[folded h(1, 2)] show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
636 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
637 |
} moreover { |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
638 |
fix n1 n2 |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
639 |
assume "(n1, n2) \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
640 |
hence "(n1, n2) \<in>tRAG s \<or> (n1, n2) = (Th th, Th th'')" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
641 |
hence "(n1, n2) \<in> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
642 |
proof |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
643 |
assume "(n1, n2) \<in> tRAG s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
644 |
moreover have "... \<subseteq> ?L" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
645 |
proof(rule tRAG_mono) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
646 |
show "RAG s \<subseteq> RAG s'" by (unfold assms(1), auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
647 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
648 |
ultimately show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
649 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
650 |
assume eq_n: "(n1, n2) = (Th th, Th th'')" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
651 |
from assms(1, 2) have "(Cs cs, Th th'') \<in> RAG s'" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
652 |
moreover have "(Th th, Cs cs) \<in> RAG s'" using assms(1) by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
653 |
ultimately show ?thesis |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
654 |
by (unfold eq_n tRAG_alt_def, auto) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
655 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
656 |
} ultimately show ?thesis by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
657 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
658 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
659 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
660 |
The following lemmas gives an alternative definition @{term dependants} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
661 |
in terms of @{term tRAG}. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
662 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
663 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
664 |
lemma dependants_alt_def: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
665 |
"dependants s th = {th'. (Th th', Th th) \<in> (tRAG s)^+}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
666 |
by (metis eq_RAG s_dependants_def tRAG_trancl_eq) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
667 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
668 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
669 |
The following lemmas gives another alternative definition @{term dependants} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
670 |
in terms of @{term RAG}. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
671 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
672 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
673 |
lemma dependants_alt_def1: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
674 |
"dependants (s::state) th = {th'. (Th th', Th th) \<in> (RAG s)^+}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
675 |
using dependants_alt_def tRAG_trancl_eq by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
676 |
|
99 | 677 |
section {* Locales used to investigate the execution of PIP *} |
678 |
||
679 |
text {* |
|
680 |
The following locale @{text valid_trace} is used to constrain the |
|
681 |
trace to be valid. All properties hold for valid traces are |
|
682 |
derived under this locale. |
|
683 |
*} |
|
63 | 684 |
locale valid_trace = |
685 |
fixes s |
|
686 |
assumes vt : "vt s" |
|
687 |
||
99 | 688 |
text {* |
689 |
The following locale @{text valid_trace_e} describes |
|
690 |
the valid extension of a valid trace. The event @{text "e"} |
|
691 |
represents an event in the system, which corresponds |
|
692 |
to a one step operation of the PIP protocol. |
|
693 |
It is required that @{text "e"} is an event eligible to happen |
|
694 |
under state @{text "s"}, which is already required to be valid |
|
695 |
by the parent locale @{text "valid_trace"}. |
|
696 |
||
697 |
This locale is used to investigate one step execution of PIP, |
|
698 |
properties concerning the effects of @{text "e"}'s execution, |
|
699 |
for example, how the values of observation functions are changed, |
|
700 |
or how desirable properties are kept invariant, are derived |
|
701 |
under this locale. The state before execution is @{text "s"}, while |
|
702 |
the state after execution is @{text "e#s"}. Therefore, the lemmas |
|
703 |
derived usually relate observations on @{text "e#s"} to those |
|
704 |
on @{text "s"}. |
|
705 |
*} |
|
706 |
||
63 | 707 |
locale valid_trace_e = valid_trace + |
708 |
fixes e |
|
709 |
assumes vt_e: "vt (e#s)" |
|
710 |
begin |
|
711 |
||
99 | 712 |
text {* |
713 |
The following lemma shows that @{text "e"} must be a |
|
714 |
eligible event (or a valid step) to be taken under |
|
715 |
the state represented by @{text "s"}. |
|
716 |
*} |
|
63 | 717 |
lemma pip_e: "PIP s e" |
718 |
using vt_e by (cases, simp) |
|
719 |
||
720 |
end |
|
721 |
||
99 | 722 |
text {* |
723 |
Because @{term "e#s"} is also a valid trace, properties |
|
724 |
derived for valid trace @{term s} also hold on @{term "e#s"}. |
|
725 |
*} |
|
120
b3b8735c7c02
updated to Isabelle 2016
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
119
diff
changeset
|
726 |
sublocale valid_trace_e < vat_es: valid_trace "e#s" |
99 | 727 |
using vt_e |
728 |
by (unfold_locales, simp) |
|
729 |
||
730 |
text {* |
|
731 |
For each specific event (or operation), there is a sublocale |
|
732 |
further constraining that the event @{text e} to be that |
|
733 |
particular event. |
|
734 |
||
735 |
For example, the following |
|
736 |
locale @{text "valid_trace_create"} is the sublocale for |
|
737 |
event @{term "Create"}: |
|
738 |
*} |
|
739 |
locale valid_trace_create = valid_trace_e + |
|
740 |
fixes th prio |
|
741 |
assumes is_create: "e = Create th prio" |
|
742 |
||
743 |
locale valid_trace_exit = valid_trace_e + |
|
744 |
fixes th |
|
745 |
assumes is_exit: "e = Exit th" |
|
746 |
||
747 |
locale valid_trace_p = valid_trace_e + |
|
748 |
fixes th cs |
|
749 |
assumes is_p: "e = P th cs" |
|
750 |
||
751 |
text {* |
|
752 |
locale @{text "valid_trace_p"} is divided further into two |
|
753 |
sublocales, namely, @{text "valid_trace_p_h"} |
|
754 |
and @{text "valid_trace_p_w"}. |
|
755 |
*} |
|
756 |
||
757 |
text {* |
|
758 |
The following two sublocales @{text "valid_trace_p_h"} |
|
759 |
and @{text "valid_trace_p_w"} represent two complementary |
|
760 |
cases under @{text "valid_trace_p"}, where |
|
761 |
@{text "valid_trace_p_h"} further constraints that |
|
762 |
@{text "wq s cs = []"}, which means the waiting queue of |
|
763 |
the requested resource @{text "cs"} is empty, in which |
|
764 |
case, the requesting thread @{text "th"} |
|
765 |
will take hold of @{text "cs"}. |
|
766 |
||
767 |
Opposite to @{text "valid_trace_p_h"}, |
|
768 |
@{text "valid_trace_p_w"} constraints that |
|
769 |
@{text "wq s cs \<noteq> []"}, which means the waiting queue of |
|
770 |
the requested resource @{text "cs"} is nonempty, in which |
|
771 |
case, the requesting thread @{text "th"} will be blocked |
|
772 |
on @{text "cs"}: |
|
773 |
||
774 |
Peculiar properties will be derived under respective |
|
775 |
locales. |
|
776 |
*} |
|
777 |
||
778 |
locale valid_trace_p_h = valid_trace_p + |
|
779 |
assumes we: "wq s cs = []" |
|
780 |
||
781 |
locale valid_trace_p_w = valid_trace_p + |
|
782 |
assumes wne: "wq s cs \<noteq> []" |
|
783 |
begin |
|
784 |
||
785 |
text {* |
|
786 |
The following @{text "holder"} designates |
|
787 |
the holder of @{text "cs"} before the @{text "P"}-operation. |
|
788 |
*} |
|
789 |
definition "holder = hd (wq s cs)" |
|
790 |
||
791 |
text {* |
|
792 |
The following @{text "waiters"} designates |
|
793 |
the list of threads waiting for @{text "cs"} |
|
794 |
before the @{text "P"}-operation. |
|
795 |
*} |
|
796 |
definition "waiters = tl (wq s cs)" |
|
797 |
end |
|
798 |
||
799 |
text {* |
|
800 |
@{text "valid_trace_v"} is set for the @{term V}-operation. |
|
801 |
*} |
|
802 |
locale valid_trace_v = valid_trace_e + |
|
803 |
fixes th cs |
|
804 |
assumes is_v: "e = V th cs" |
|
805 |
begin |
|
806 |
-- {* The following @{text "rest"} is the tail of |
|
807 |
waiting queue of the resource @{text "cs"} |
|
808 |
to be released by this @{text "V"}-operation. |
|
809 |
*} |
|
810 |
definition "rest = tl (wq s cs)" |
|
811 |
||
812 |
text {* |
|
813 |
The following @{text "wq'"} is the waiting |
|
814 |
queue of @{term "cs"} |
|
815 |
after the @{text "V"}-operation, which |
|
816 |
is simply a reordering of @{term "rest"}. |
|
817 |
||
818 |
The effect of this reordering needs to be |
|
819 |
understood by two cases: |
|
820 |
\begin{enumerate} |
|
821 |
\item When @{text "rest = []"}, |
|
822 |
the reordering gives rise to an empty list as well, |
|
823 |
which means there is no thread holding or waiting |
|
824 |
for resource @{term "cs"}, therefore, it is free. |
|
825 |
||
826 |
\item When @{text "rest \<noteq> []"}, the effect of |
|
827 |
this reordering is to arbitrarily |
|
828 |
switch one thread in @{term "rest"} to the |
|
829 |
head, which, by definition take over the hold |
|
830 |
of @{term "cs"} and is designated by @{text "taker"} |
|
831 |
in the following sublocale @{text "valid_trace_v_n"}. |
|
832 |
*} |
|
833 |
definition "wq' = (SOME q. distinct q \<and> set q = set rest)" |
|
834 |
||
835 |
text {* |
|
836 |
The following @{text "rest'"} is the tail of the |
|
837 |
waiting queue after the @{text "V"}-operation. |
|
838 |
It plays only auxiliary role to ease reasoning. |
|
839 |
*} |
|
840 |
definition "rest' = tl wq'" |
|
841 |
||
842 |
end |
|
843 |
||
844 |
text {* |
|
845 |
In the following, @{text "valid_trace_v"} is also |
|
846 |
divided into two |
|
847 |
sublocales: when @{text "rest"} is empty (represented |
|
848 |
by @{text "valid_trace_v_e"}), which means, there is no thread waiting |
|
849 |
for @{text "cs"}, therefore, after the @{text "V"}-operation, |
|
850 |
it will become free; otherwise (represented |
|
851 |
by @{text "valid_trace_v_n"}), one thread |
|
852 |
will be picked from those in @{text "rest"} to take |
|
853 |
over @{text "cs"}. |
|
854 |
*} |
|
855 |
||
856 |
locale valid_trace_v_e = valid_trace_v + |
|
857 |
assumes rest_nil: "rest = []" |
|
858 |
||
859 |
locale valid_trace_v_n = valid_trace_v + |
|
860 |
assumes rest_nnl: "rest \<noteq> []" |
|
861 |
begin |
|
862 |
||
863 |
text {* |
|
864 |
The following @{text "taker"} is the thread to |
|
865 |
take over @{text "cs"}. |
|
866 |
*} |
|
867 |
definition "taker = hd wq'" |
|
868 |
||
869 |
end |
|
870 |
||
871 |
||
872 |
locale valid_trace_set = valid_trace_e + |
|
873 |
fixes th prio |
|
874 |
assumes is_set: "e = Set th prio" |
|
875 |
||
876 |
context valid_trace |
|
877 |
begin |
|
878 |
||
879 |
text {* |
|
880 |
Induction rule introduced to easy the |
|
881 |
derivation of properties for valid trace @{term "s"}. |
|
882 |
One more premises, namely @{term "valid_trace_e s e"} |
|
883 |
is added, so that an interpretation of |
|
884 |
@{text "valid_trace_e"} can be instantiated |
|
885 |
so that all properties derived so far becomes |
|
886 |
available in the proof of induction step. |
|
887 |
||
888 |
You will see its use in the proofs that follows. |
|
889 |
*} |
|
890 |
lemma ind [consumes 0, case_names Nil Cons, induct type]: |
|
891 |
assumes "PP []" |
|
892 |
and "(\<And>s e. valid_trace_e s e \<Longrightarrow> |
|
893 |
PP s \<Longrightarrow> PIP s e \<Longrightarrow> PP (e # s))" |
|
894 |
shows "PP s" |
|
895 |
proof(induct rule:vt.induct[OF vt, case_names Init Step]) |
|
896 |
case Init |
|
897 |
from assms(1) show ?case . |
|
898 |
next |
|
899 |
case (Step s e) |
|
900 |
show ?case |
|
901 |
proof(rule assms(2)) |
|
902 |
show "valid_trace_e s e" using Step by (unfold_locales, auto) |
|
903 |
next |
|
904 |
show "PP s" using Step by simp |
|
905 |
next |
|
906 |
show "PIP s e" using Step by simp |
|
907 |
qed |
|
908 |
qed |
|
909 |
||
910 |
text {* |
|
911 |
The following lemma says that if @{text "s"} is a valid state, so |
|
912 |
is its any postfix. Where @{term "monent t s"} is the postfix of |
|
913 |
@{term "s"} with length @{term "t"}. |
|
914 |
*} |
|
915 |
lemma vt_moment: "\<And> t. vt (moment t s)" |
|
916 |
proof(induct rule:ind) |
|
917 |
case Nil |
|
918 |
thus ?case by (simp add:vt_nil) |
|
919 |
next |
|
920 |
case (Cons s e t) |
|
921 |
show ?case |
|
922 |
proof(cases "t \<ge> length (e#s)") |
|
923 |
case True |
|
924 |
from True have "moment t (e#s) = e#s" by simp |
|
925 |
thus ?thesis using Cons |
|
926 |
by (simp add:valid_trace_def valid_trace_e_def, auto) |
|
927 |
next |
|
928 |
case False |
|
929 |
from Cons have "vt (moment t s)" by simp |
|
930 |
moreover have "moment t (e#s) = moment t s" |
|
931 |
proof - |
|
932 |
from False have "t \<le> length s" by simp |
|
933 |
from moment_app [OF this, of "[e]"] |
|
934 |
show ?thesis by simp |
|
935 |
qed |
|
936 |
ultimately show ?thesis by simp |
|
937 |
qed |
|
938 |
qed |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
939 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
940 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
941 |
The following two lemmas are fundamental, because they assure |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
942 |
that the numbers of both living and ready threads are finite. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
943 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
944 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
945 |
lemma finite_threads: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
946 |
shows "finite (threads s)" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
947 |
using vt by (induct) (auto elim: step.cases) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
948 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
949 |
lemma finite_readys: "finite (readys s)" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
950 |
using finite_threads readys_threads rev_finite_subset by blast |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
951 |
|
99 | 952 |
end |
953 |
||
954 |
text {* |
|
955 |
The following locale @{text "valid_moment"} is to inherit the properties |
|
956 |
derived on any valid state to the prefix of it, with length @{text "i"}. |
|
957 |
*} |
|
958 |
locale valid_moment = valid_trace + |
|
959 |
fixes i :: nat |
|
960 |
||
120
b3b8735c7c02
updated to Isabelle 2016
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
119
diff
changeset
|
961 |
sublocale valid_moment < vat_moment: valid_trace "(moment i s)" |
99 | 962 |
by (unfold_locales, insert vt_moment, auto) |
963 |
||
100 | 964 |
locale valid_moment_e = valid_moment + |
965 |
assumes less_i: "i < length s" |
|
63 | 966 |
begin |
100 | 967 |
definition "next_e = hd (moment (Suc i) s)" |
968 |
||
969 |
lemma trace_e: |
|
970 |
"moment (Suc i) s = next_e#moment i s" |
|
971 |
proof - |
|
972 |
from less_i have "Suc i \<le> length s" by auto |
|
973 |
from moment_plus[OF this, folded next_e_def] |
|
974 |
show ?thesis . |
|
975 |
qed |
|
976 |
||
977 |
end |
|
978 |
||
120
b3b8735c7c02
updated to Isabelle 2016
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
119
diff
changeset
|
979 |
sublocale valid_moment_e < vat_moment_e: valid_trace_e "moment i s" "next_e" |
100 | 980 |
using vt_moment[of "Suc i", unfolded trace_e] |
981 |
by (unfold_locales, simp) |
|
982 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
983 |
section {* Waiting queues are distinct *} |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
984 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
985 |
text {* |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
986 |
This section proves that every waiting queue in the system |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
987 |
is distinct, given in lemma @{text wq_distinct}. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
988 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
989 |
The proof is split into the locales for events (or operations), |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
990 |
all contain a lemma named @{text "wq_distinct_kept"} to show that |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
991 |
the distinctiveness is preserved by the respective operation. All lemmas |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
992 |
before are to facilitate the proof of @{text "wq_distinct_kept"}. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
993 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
994 |
The proof also demonstrates the common pattern to prove |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
995 |
invariant properties over valid traces, i.e. to spread the |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
996 |
invariant proof into locales and to assemble the results of all |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
997 |
locales to complete the final proof. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
998 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
999 |
*} |
108 | 1000 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1001 |
context valid_trace_create |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1002 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1003 |
|
99 | 1004 |
lemma wq_kept [simp]: |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1005 |
shows "wq (e#s) cs' = wq s cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1006 |
using assms unfolding is_create wq_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1007 |
by (auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1008 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1009 |
lemma wq_distinct_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1010 |
assumes "distinct (wq s cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1011 |
shows "distinct (wq (e#s) cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1012 |
using assms by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1013 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1014 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1015 |
context valid_trace_exit |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1016 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1017 |
|
99 | 1018 |
lemma wq_kept [simp]: |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1019 |
shows "wq (e#s) cs' = wq s cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1020 |
using assms unfolding is_exit wq_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1021 |
by (auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1022 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1023 |
lemma wq_distinct_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1024 |
assumes "distinct (wq s cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1025 |
shows "distinct (wq (e#s) cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1026 |
using assms by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1027 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1028 |
|
100 | 1029 |
context valid_trace_p |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1030 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1031 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1032 |
lemma wq_neq_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1033 |
assumes "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1034 |
shows "wq (e#s) cs' = wq s cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1035 |
using assms unfolding is_p wq_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1036 |
by (auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1037 |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1038 |
lemma running_th_s: |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1039 |
shows "th \<in> running s" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1040 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1041 |
from pip_e[unfolded is_p] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1042 |
show ?thesis by (cases, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1043 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1044 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1045 |
lemma th_not_in_wq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1046 |
shows "th \<notin> set (wq s cs)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1047 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1048 |
assume otherwise: "th \<in> set (wq s cs)" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1049 |
from running_wqE[OF running_th_s this] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1050 |
obtain rest where eq_wq: "wq s cs = th#rest" by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1051 |
with otherwise |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1052 |
have "holding s th cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1053 |
by (unfold s_holding_def, fold wq_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1054 |
hence cs_th_RAG: "(Cs cs, Th th) \<in> RAG s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1055 |
by (unfold s_RAG_def, fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1056 |
from pip_e[unfolded is_p] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1057 |
show False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1058 |
proof(cases) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1059 |
case (thread_P) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1060 |
with cs_th_RAG show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1061 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1062 |
qed |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1063 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1064 |
lemma wq_es_cs: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1065 |
"wq (e#s) cs = wq s cs @ [th]" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1066 |
by (unfold is_p wq_def, auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1067 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1068 |
lemma wq_distinct_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1069 |
assumes "distinct (wq s cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1070 |
shows "distinct (wq (e#s) cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1071 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1072 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1073 |
show ?thesis using True assms th_not_in_wq |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1074 |
by (unfold True wq_es_cs, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1075 |
qed (insert assms, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1076 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1077 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1078 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1079 |
context valid_trace_v |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1080 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1081 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1082 |
lemma wq_neq_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1083 |
assumes "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1084 |
shows "wq (e#s) cs' = wq s cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1085 |
using assms unfolding is_v wq_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1086 |
by (auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1087 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1088 |
lemma wq_s_cs: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1089 |
"wq s cs = th#rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1090 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1091 |
from pip_e[unfolded is_v] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1092 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1093 |
proof(cases) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1094 |
case (thread_V) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1095 |
from this(2) show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1096 |
by (unfold rest_def s_holding_def, fold wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1097 |
metis empty_iff list.collapse list.set(1)) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1098 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1099 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1100 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1101 |
lemma wq_es_cs: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1102 |
"wq (e#s) cs = wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1103 |
using wq_s_cs[unfolded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1104 |
by (auto simp:Let_def wq_def rest_def wq'_def is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1105 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1106 |
lemma wq_distinct_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1107 |
assumes "distinct (wq s cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1108 |
shows "distinct (wq (e#s) cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1109 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1110 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1111 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1112 |
proof(unfold True wq_es_cs wq'_def, rule someI2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1113 |
show "distinct rest \<and> set rest = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1114 |
using assms[unfolded True wq_s_cs] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1115 |
qed simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1116 |
qed (insert assms, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1117 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1118 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1119 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1120 |
context valid_trace_set |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1121 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1122 |
|
99 | 1123 |
lemma wq_kept [simp]: |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1124 |
shows "wq (e#s) cs' = wq s cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1125 |
using assms unfolding is_set wq_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1126 |
by (auto simp:Let_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1127 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1128 |
lemma wq_distinct_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1129 |
assumes "distinct (wq s cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1130 |
shows "distinct (wq (e#s) cs')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1131 |
using assms by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1132 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1133 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1134 |
context valid_trace |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1135 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1136 |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1137 |
text {* |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1138 |
The proof of @{text "wq_distinct"} shows how the results |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1139 |
proved in the foregoing locales are assembled in |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1140 |
a overall structure of induction and case analysis |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1141 |
to get the final conclusion. This scheme will be |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1142 |
used repeatedly in the following. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1143 |
*} |
63 | 1144 |
lemma wq_distinct: "distinct (wq s cs)" |
68 | 1145 |
proof(induct rule:ind) |
1146 |
case (Cons s e) |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1147 |
interpret vt_e: valid_trace_e s e using Cons by simp |
68 | 1148 |
show ?case |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1149 |
proof(cases e) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1150 |
case (Create th prio) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1151 |
interpret vt_create: valid_trace_create s e th prio |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1152 |
using Create by (unfold_locales, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1153 |
show ?thesis using Cons by (simp add: vt_create.wq_distinct_kept) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1154 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1155 |
case (Exit th) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1156 |
interpret vt_exit: valid_trace_exit s e th |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1157 |
using Exit by (unfold_locales, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1158 |
show ?thesis using Cons by (simp add: vt_exit.wq_distinct_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1159 |
next |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1160 |
case (P th cs) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1161 |
interpret vt_p: valid_trace_p s e th cs using P by (unfold_locales, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1162 |
show ?thesis using Cons by (simp add: vt_p.wq_distinct_kept) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1163 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1164 |
case (V th cs) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1165 |
interpret vt_v: valid_trace_v s e th cs using V by (unfold_locales, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1166 |
show ?thesis using Cons by (simp add: vt_v.wq_distinct_kept) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1167 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1168 |
case (Set th prio) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1169 |
interpret vt_set: valid_trace_set s e th prio |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1170 |
using Set by (unfold_locales, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1171 |
show ?thesis using Cons by (simp add: vt_set.wq_distinct_kept) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1172 |
qed |
68 | 1173 |
qed (unfold wq_def Let_def, simp) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1174 |
|
63 | 1175 |
end |
1176 |
||
100 | 1177 |
section {* Waiting queues and threads *} |
1178 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1179 |
text {* |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1180 |
This section shows that all threads withing waiting queues are |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1181 |
in the @{term threads}-set. In other words, @{term threads} covers |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1182 |
all the threads in waiting queue. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1183 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1184 |
The proof follows the same pattern as @{thm valid_trace.wq_distinct}. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1185 |
The desired property is shown to be kept by all operations (or events) |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1186 |
in their respective locales, and finally the main lemmas is |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1187 |
derived by assembling the invariant keeping results of the locales. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1188 |
*} |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1189 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1190 |
context valid_trace_create |
63 | 1191 |
begin |
1192 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1193 |
lemma |
100 | 1194 |
th_not_in_threads: "th \<notin> threads s" |
1195 |
proof - |
|
1196 |
from pip_e[unfolded is_create] |
|
1197 |
show ?thesis by (cases, simp) |
|
1198 |
qed |
|
1199 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1200 |
lemma |
100 | 1201 |
threads_es [simp]: "threads (e#s) = threads s \<union> {th}" |
1202 |
by (unfold is_create, simp) |
|
1203 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1204 |
lemma wq_threads_kept: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1205 |
assumes "\<And> th' cs'. th' \<in> set (wq s cs') \<Longrightarrow> th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1206 |
and "th' \<in> set (wq (e#s) cs')" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1207 |
shows "th' \<in> threads (e#s)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1208 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1209 |
have "th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1210 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1211 |
from assms(2)[unfolded wq_kept] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1212 |
have "th' \<in> set (wq s cs')" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1213 |
from assms(1)[OF this] show ?thesis . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1214 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1215 |
with threads_es show ?thesis by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1216 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1217 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1218 |
end |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1219 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1220 |
context valid_trace_exit |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1221 |
begin |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1222 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1223 |
lemma threads_es [simp]: "threads (e#s) = threads s - {th}" |
100 | 1224 |
by (unfold is_exit, simp) |
1225 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1226 |
lemma |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1227 |
th_not_in_wq: "th \<notin> set (wq s cs)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1228 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1229 |
from pip_e[unfolded is_exit] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1230 |
show ?thesis |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1231 |
by (cases, unfold holdents_def s_holding_def, fold wq_def, |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1232 |
auto elim!:running_wqE) |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1233 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1234 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1235 |
lemma wq_threads_kept: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1236 |
assumes "\<And> th' cs'. th' \<in> set (wq s cs') \<Longrightarrow> th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1237 |
and "th' \<in> set (wq (e#s) cs')" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1238 |
shows "th' \<in> threads (e#s)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1239 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1240 |
have "th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1241 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1242 |
from assms(2)[unfolded wq_kept] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1243 |
have "th' \<in> set (wq s cs')" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1244 |
from assms(1)[OF this] show ?thesis . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1245 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1246 |
moreover have "th' \<noteq> th" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1247 |
proof |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1248 |
assume otherwise: "th' = th" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1249 |
from assms(2)[unfolded wq_kept] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1250 |
have "th' \<in> set (wq s cs')" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1251 |
with th_not_in_wq[folded otherwise] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1252 |
show False by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1253 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1254 |
ultimately show ?thesis |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1255 |
by (unfold threads_es, simp) |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1256 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1257 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1258 |
end |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1259 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1260 |
context valid_trace_v |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1261 |
begin |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1262 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1263 |
lemma |
100 | 1264 |
threads_es [simp]: "threads (e#s) = threads s" |
1265 |
by (unfold is_v, simp) |
|
1266 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1267 |
lemma |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1268 |
th_not_in_rest: "th \<notin> set rest" |
100 | 1269 |
proof |
1270 |
assume otherwise: "th \<in> set rest" |
|
1271 |
have "distinct (wq s cs)" by (simp add: wq_distinct) |
|
1272 |
from this[unfolded wq_s_cs] and otherwise |
|
1273 |
show False by auto |
|
1274 |
qed |
|
1275 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1276 |
lemma distinct_rest: "distinct rest" |
100 | 1277 |
by (simp add: distinct_tl rest_def wq_distinct) |
1278 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1279 |
lemma |
100 | 1280 |
set_wq_es_cs [simp]: "set (wq (e#s) cs) = set (wq s cs) - {th}" |
1281 |
proof(unfold wq_es_cs wq'_def, rule someI2) |
|
1282 |
show "distinct rest \<and> set rest = set rest" |
|
1283 |
by (simp add: distinct_rest) |
|
1284 |
next |
|
1285 |
fix x |
|
1286 |
assume "distinct x \<and> set x = set rest" |
|
1287 |
thus "set x = set (wq s cs) - {th}" |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1288 |
by (unfold wq_s_cs, simp add:th_not_in_rest) |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1289 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1290 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1291 |
lemma wq_threads_kept: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1292 |
assumes "\<And> th' cs'. th' \<in> set (wq s cs') \<Longrightarrow> th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1293 |
and "th' \<in> set (wq (e#s) cs')" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1294 |
shows "th' \<in> threads (e#s)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1295 |
proof(cases "cs' = cs") |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1296 |
case True |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1297 |
have " th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1298 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1299 |
from assms(2)[unfolded True set_wq_es_cs] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1300 |
have "th' \<in> set (wq s cs) - {th}" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1301 |
hence "th' \<in> set (wq s cs)" by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1302 |
from assms(1)[OF this] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1303 |
show ?thesis . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1304 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1305 |
with threads_es show ?thesis by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1306 |
next |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1307 |
case False |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1308 |
have "th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1309 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1310 |
from wq_neq_simp[OF False] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1311 |
have "wq (e # s) cs' = wq s cs'" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1312 |
from assms(2)[unfolded this] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1313 |
have "th' \<in> set (wq s cs')" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1314 |
from assms(1)[OF this] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1315 |
show ?thesis . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1316 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1317 |
with threads_es show ?thesis by simp |
100 | 1318 |
qed |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1319 |
end |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1320 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1321 |
context valid_trace_p |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1322 |
begin |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1323 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1324 |
lemma threads_es [simp]: "threads (e#s) = threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1325 |
by (unfold is_p, simp) |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1326 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1327 |
lemma ready_th_s: "th \<in> readys s" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1328 |
using running_th_s |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1329 |
by (unfold running_def, auto) |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1330 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1331 |
lemma live_th_s: "th \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1332 |
using readys_threads ready_th_s by auto |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1333 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1334 |
lemma wq_threads_kept: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1335 |
assumes "\<And> th' cs'. th' \<in> set (wq s cs') \<Longrightarrow> th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1336 |
and "th' \<in> set (wq (e#s) cs')" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1337 |
shows "th' \<in> threads (e#s)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1338 |
proof(cases "cs' = cs") |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1339 |
case True |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1340 |
from assms(2)[unfolded True wq_es_cs] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1341 |
have "th' \<in> set (wq s cs) \<or> th' = th" by auto |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1342 |
thus ?thesis |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1343 |
proof |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1344 |
assume "th' \<in> set (wq s cs)" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1345 |
from assms(1)[OF this] have "th' \<in> threads s" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1346 |
with threads_es |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1347 |
show ?thesis by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1348 |
next |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1349 |
assume "th' = th" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1350 |
with live_th_s have "th' \<in> threads s" by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1351 |
with threads_es show ?thesis by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1352 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1353 |
next |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1354 |
case False |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1355 |
have "th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1356 |
proof - |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1357 |
from wq_neq_simp[OF False] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1358 |
have "wq (e # s) cs' = wq s cs'" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1359 |
from assms(2)[unfolded this] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1360 |
have "th' \<in> set (wq s cs')" . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1361 |
from assms(1)[OF this] |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1362 |
show ?thesis . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1363 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1364 |
with threads_es show ?thesis by simp |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1365 |
qed |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1366 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1367 |
end |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1368 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1369 |
context valid_trace_set |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1370 |
begin |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1371 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1372 |
lemma threads_kept[simp]: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1373 |
"threads (e#s) = threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1374 |
by (unfold is_set, simp) |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1375 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1376 |
lemma wq_threads_kept: |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1377 |
assumes "\<And> th' cs'. th' \<in> set (wq s cs') \<Longrightarrow> th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1378 |
and "th' \<in> set (wq (e#s) cs')" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1379 |
shows "th' \<in> threads (e#s)" |
100 | 1380 |
proof - |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1381 |
have "th' \<in> threads s" |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1382 |
using assms(1)[OF assms(2)[unfolded wq_kept]] . |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1383 |
with threads_kept show ?thesis by simp |
100 | 1384 |
qed |
1385 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1386 |
end |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1387 |
|
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1388 |
text {* |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1389 |
The is the main lemma of this section, which is derived |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1390 |
by induction, case analysis on event @{text e} and |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1391 |
assembling the @{text "wq_threads_kept"}-results of |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1392 |
all possible cases of @{text "e"}. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1393 |
*} |
100 | 1394 |
lemma (in valid_trace) wq_threads: |
1395 |
assumes "th \<in> set (wq s cs)" |
|
1396 |
shows "th \<in> threads s" |
|
1397 |
using assms |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1398 |
proof(induct arbitrary:th cs rule:ind) |
100 | 1399 |
case (Nil) |
1400 |
thus ?case by (auto simp:wq_def) |
|
1401 |
next |
|
1402 |
case (Cons s e) |
|
1403 |
interpret vt_e: valid_trace_e s e using Cons by simp |
|
1404 |
show ?case |
|
1405 |
proof(cases e) |
|
1406 |
case (Create th' prio') |
|
1407 |
interpret vt: valid_trace_create s e th' prio' |
|
1408 |
using Create by (unfold_locales, simp) |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1409 |
show ?thesis using vt.wq_threads_kept Cons by auto |
100 | 1410 |
next |
1411 |
case (Exit th') |
|
1412 |
interpret vt: valid_trace_exit s e th' |
|
1413 |
using Exit by (unfold_locales, simp) |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1414 |
show ?thesis using vt.wq_threads_kept Cons by auto |
100 | 1415 |
next |
1416 |
case (P th' cs') |
|
1417 |
interpret vt: valid_trace_p s e th' cs' |
|
1418 |
using P by (unfold_locales, simp) |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1419 |
show ?thesis using vt.wq_threads_kept Cons by auto |
100 | 1420 |
next |
1421 |
case (V th' cs') |
|
1422 |
interpret vt: valid_trace_v s e th' cs' |
|
1423 |
using V by (unfold_locales, simp) |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1424 |
show ?thesis using vt.wq_threads_kept Cons by auto |
100 | 1425 |
next |
1426 |
case (Set th' prio) |
|
1427 |
interpret vt: valid_trace_set s e th' prio |
|
1428 |
using Set by (unfold_locales, simp) |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1429 |
show ?thesis using vt.wq_threads_kept Cons by auto |
100 | 1430 |
qed |
1431 |
qed |
|
1432 |
||
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1433 |
subsection {* RAG and threads *} |
68 | 1434 |
|
63 | 1435 |
context valid_trace |
1436 |
begin |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1437 |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1438 |
text {* |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1439 |
As corollaries of @{thm wq_threads}, it is shown in this subsection |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1440 |
that the fields (including both domain |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1441 |
and range) of @{term RAG} are covered by @{term threads}. |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1442 |
*} |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
1443 |
|
100 | 1444 |
lemma dm_RAG_threads: |
1445 |
assumes in_dom: "(Th th) \<in> Domain (RAG s)" |
|
1446 |
shows "th \<in> threads s" |
|
104 | 1447 |
proof - |
100 | 1448 |
from in_dom obtain n where "(Th th, n) \<in> RAG s" by auto |
108 | 1449 |
moreover then obtain cs where "n = Cs cs" by (unfold s_RAG_def, auto) |
100 | 1450 |
ultimately have "(Th th, Cs cs) \<in> RAG s" by simp |
1451 |
hence "th \<in> set (wq s cs)" |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1452 |
by (unfold s_RAG_def, auto simp: waiting_raw_def) |
100 | 1453 |
from wq_threads [OF this] show ?thesis . |
104 | 1454 |
qed |
1455 |
||
100 | 1456 |
lemma rg_RAG_threads: |
1457 |
assumes "(Th th) \<in> Range (RAG s)" |
|
1458 |
shows "th \<in> threads s" |
|
1459 |
using assms |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1460 |
unfolding s_RAG_def waiting_raw_def holding_raw_def |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1461 |
using wq_threads by auto |
100 | 1462 |
|
1463 |
lemma RAG_threads: |
|
1464 |
assumes "(Th th) \<in> Field (RAG s)" |
|
1465 |
shows "th \<in> threads s" |
|
1466 |
using assms |
|
1467 |
by (metis Field_def UnE dm_RAG_threads rg_RAG_threads) |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1468 |
|
116 | 1469 |
lemma not_in_thread_isolated: |
1470 |
assumes "th \<notin> threads s" |
|
1471 |
shows "(Th th) \<notin> Field (RAG s)" |
|
1472 |
using RAG_threads assms by auto |
|
1473 |
||
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1474 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1475 |
As a corollary, this lemma shows that @{term tRAG} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1476 |
is also covered by the @{term threads}-set. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1477 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1478 |
lemma subtree_tRAG_thread: |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1479 |
assumes "th \<in> threads s" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1480 |
shows "subtree (tRAG s) (Th th) \<subseteq> Th ` threads s" (is "?L \<subseteq> ?R") |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1481 |
proof - |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1482 |
have "?L = {Th th' |th'. Th th' \<in> subtree (RAG s) (Th th)}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1483 |
by (unfold tRAG_subtree_eq, simp) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1484 |
also have "... \<subseteq> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1485 |
proof |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1486 |
fix x |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1487 |
assume "x \<in> {Th th' |th'. Th th' \<in> subtree (RAG s) (Th th)}" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1488 |
then obtain th' where h: "x = Th th'" "Th th' \<in> subtree (RAG s) (Th th)" by auto |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1489 |
from this(2) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1490 |
show "x \<in> ?R" |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1491 |
proof(cases rule:subtreeE) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1492 |
case 1 |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1493 |
thus ?thesis by (simp add: assms h(1)) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1494 |
next |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1495 |
case 2 |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1496 |
thus ?thesis by (metis ancestors_Field dm_RAG_threads h(1) image_eqI) |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1497 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1498 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1499 |
finally show ?thesis . |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1500 |
qed |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
1501 |
|
63 | 1502 |
end |
1503 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1504 |
section {* The formation of @{term RAG} *} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1505 |
|
53
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1506 |
text {* |
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1507 |
The whole of PIP resides on the understanding of the formation |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1508 |
of @{term RAG}. We are going to show that @{term RAG} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1509 |
forms a finite branching forest. The formalization is divided |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1510 |
into a series of subsections. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1511 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1512 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1513 |
subsection {* The change of @{term RAG} with each step of execution *} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1514 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1515 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1516 |
The very essence to prove that @{term RAG} has a certain property is to |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1517 |
show that this property is preserved as an invariant by the execution |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1518 |
of the system, and the basis for such kind of invariant proofs is to |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1519 |
show how @{term RAG} is changed with the execution of every execution step |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1520 |
(or event, or system operation). In this subsection, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1521 |
the effect of every event on @{text RAG} is derived in its respective |
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1522 |
locale named @{text "RAG_es"} with all lemmas before auxiliary. |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1523 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1524 |
These derived @{text "RAG_es"}s constitute the foundation |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
1525 |
to show the various well-formed properties of @{term RAG}, |
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1526 |
for example, @{term RAG} is finite, acyclic, and single-valued, etc. |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1527 |
*} |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1528 |
|
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1529 |
text {* |
53
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1530 |
The following three lemmas show that @{text "RAG"} does not change |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1531 |
by the happening of @{text "Set"}, @{text "Create"} and @{text "Exit"} |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1532 |
events, respectively. |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1533 |
*} |
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
1534 |
|
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1535 |
lemma (in valid_trace_set) RAG_es [simp]: "(RAG (e # s)) = RAG s" |
100 | 1536 |
by (unfold is_set s_RAG_def s_waiting_def wq_def, simp add:Let_def) |
1537 |
||
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1538 |
lemma (in valid_trace_create) RAG_es [simp]: "(RAG (e # s)) = RAG s" |
100 | 1539 |
by (unfold is_create s_RAG_def s_waiting_def wq_def, simp add:Let_def) |
1540 |
||
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
1541 |
lemma (in valid_trace_exit) RAG_es[simp]: "(RAG (e # s)) = RAG s" |
100 | 1542 |
by (unfold is_exit s_RAG_def s_waiting_def wq_def, simp add:Let_def) |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1543 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1544 |
context valid_trace_v |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1545 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1546 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1547 |
lemma holding_cs_eq_th: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1548 |
assumes "holding s t cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1549 |
shows "t = th" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1550 |
proof - |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1551 |
from pip_e[unfolded is_v] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1552 |
show ?thesis |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1553 |
proof(cases) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1554 |
case (thread_V) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1555 |
from held_unique[OF this(2) assms] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1556 |
show ?thesis by simp |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1557 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1558 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1559 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1560 |
lemma distinct_wq': "distinct wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1561 |
by (metis (mono_tags, lifting) distinct_rest some_eq_ex wq'_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1562 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1563 |
lemma set_wq': "set wq' = set rest" |
100 | 1564 |
by (metis (mono_tags, lifting) distinct_rest some_eq_ex wq'_def) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1565 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1566 |
lemma th'_in_inv: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1567 |
assumes "th' \<in> set wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1568 |
shows "th' \<in> set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1569 |
using assms set_wq' by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1570 |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1571 |
lemma running_th_s: |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1572 |
shows "th \<in> running s" |
100 | 1573 |
proof - |
1574 |
from pip_e[unfolded is_v] |
|
1575 |
show ?thesis by (cases, simp) |
|
1576 |
qed |
|
1577 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1578 |
lemma neq_t_th: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1579 |
assumes "waiting (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1580 |
shows "t \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1581 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1582 |
assume otherwise: "t = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1583 |
show False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1584 |
proof(cases "c = cs") |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1585 |
case True |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1586 |
have "t \<in> set wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1587 |
using assms[unfolded True s_waiting_def, folded wq_def, unfolded wq_es_cs] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1588 |
by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1589 |
from th'_in_inv[OF this] have "t \<in> set rest" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1590 |
with wq_s_cs[folded otherwise] wq_distinct[of cs] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1591 |
show ?thesis by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1592 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1593 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1594 |
have "wq (e#s) c = wq s c" using False |
108 | 1595 |
by simp |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1596 |
hence "waiting s t c" using assms |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1597 |
by (simp add: waiting_raw_def waiting_eq) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1598 |
hence "t \<notin> readys s" by (unfold readys_def, auto) |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1599 |
hence "t \<notin> running s" using running_ready by auto |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1600 |
with running_th_s[folded otherwise] show ?thesis by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1601 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1602 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1603 |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1604 |
lemma waiting_esI1: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1605 |
assumes "waiting s t c" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1606 |
and "c \<noteq> cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1607 |
shows "waiting (e#s) t c" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1608 |
proof - |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1609 |
have "wq (e#s) c = wq s c" |
108 | 1610 |
using assms(2) by auto |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1611 |
with assms(1) show ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1612 |
unfolding waiting_raw_def waiting_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1613 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1614 |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1615 |
lemma holding_esI2: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1616 |
assumes "c \<noteq> cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1617 |
and "holding s t c" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1618 |
shows "holding (e#s) t c" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1619 |
proof - |
108 | 1620 |
from assms(1) have "wq (e#s) c = wq s c" by auto |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1621 |
from assms(2)[unfolded s_holding_def, folded wq_def, |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1622 |
folded this, unfolded wq_def, folded s_holding_def] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1623 |
show ?thesis . |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1624 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1625 |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1626 |
lemma holding_esI1: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1627 |
assumes "holding s t c" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1628 |
and "t \<noteq> th" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1629 |
shows "holding (e#s) t c" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1630 |
proof - |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1631 |
have "c \<noteq> cs" using assms using holding_cs_eq_th by blast |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1632 |
from holding_esI2[OF this assms(1)] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1633 |
show ?thesis . |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1634 |
qed |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
1635 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1636 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1637 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1638 |
context valid_trace_v_n |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1639 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1640 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1641 |
lemma neq_wq': "wq' \<noteq> []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1642 |
proof (unfold wq'_def, rule someI2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1643 |
show "distinct rest \<and> set rest = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1644 |
by (simp add: distinct_rest) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1645 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1646 |
fix x |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1647 |
assume " distinct x \<and> set x = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1648 |
thus "x \<noteq> []" using rest_nnl by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1649 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1650 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1651 |
lemma eq_wq': "wq' = taker # rest'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1652 |
by (simp add: neq_wq' rest'_def taker_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1653 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1654 |
lemma next_th_taker: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1655 |
shows "next_th s th cs taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1656 |
using rest_nnl taker_def wq'_def wq_s_cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1657 |
by (auto simp:next_th_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1658 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1659 |
lemma taker_unique: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1660 |
assumes "next_th s th cs taker'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1661 |
shows "taker' = taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1662 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1663 |
from assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1664 |
obtain rest' where |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1665 |
h: "wq s cs = th # rest'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1666 |
"taker' = hd (SOME q. distinct q \<and> set q = set rest')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1667 |
by (unfold next_th_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1668 |
with wq_s_cs have "rest' = rest" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1669 |
thus ?thesis using h(2) taker_def wq'_def by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1670 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1671 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1672 |
lemma waiting_set_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1673 |
"{(Th th', Cs cs) |th'. next_th s th cs th'} = {(Th taker, Cs cs)}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1674 |
by (smt all_not_in_conv bot.extremum insertI1 insert_subset |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1675 |
mem_Collect_eq next_th_taker subsetI subset_antisym taker_def taker_unique) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1676 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1677 |
lemma holding_set_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1678 |
"{(Cs cs, Th th') |th'. next_th s th cs th'} = {(Cs cs, Th taker)}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1679 |
using next_th_taker taker_def waiting_set_eq |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1680 |
by fastforce |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1681 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1682 |
lemma holding_taker: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1683 |
shows "holding (e#s) taker cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1684 |
by (unfold s_holding_def, fold wq_def, unfold wq_es_cs, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1685 |
auto simp:neq_wq' taker_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1686 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1687 |
lemma waiting_esI2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1688 |
assumes "waiting s t cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1689 |
and "t \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1690 |
shows "waiting (e#s) t cs" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1691 |
proof - |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1692 |
have "t \<in> set wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1693 |
proof(unfold wq'_def, rule someI2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1694 |
show "distinct rest \<and> set rest = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1695 |
by (simp add: distinct_rest) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1696 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1697 |
fix x |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1698 |
assume "distinct x \<and> set x = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1699 |
moreover have "t \<in> set rest" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1700 |
using assms(1) unfolding waiting_raw_def waiting_eq wq_s_cs by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1701 |
ultimately show "t \<in> set x" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1702 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1703 |
moreover have "t \<noteq> hd wq'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1704 |
using assms(2) taker_def by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1705 |
ultimately show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1706 |
by (unfold s_waiting_def, fold wq_def, unfold wq_es_cs, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1707 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1708 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1709 |
lemma waiting_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1710 |
assumes "waiting (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1711 |
obtains "c \<noteq> cs" "waiting s t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1712 |
| "c = cs" "t \<noteq> taker" "waiting s t cs" "t \<in> set rest'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1713 |
proof(cases "c = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1714 |
case False |
108 | 1715 |
hence "wq (e#s) c = wq s c" by auto |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1716 |
with assms have "waiting s t c" unfolding waiting_raw_def waiting_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1717 |
from that(1)[OF False this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1718 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1719 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1720 |
from assms[unfolded s_waiting_def True, folded wq_def, unfolded wq_es_cs] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1721 |
have "t \<noteq> hd wq'" "t \<in> set wq'" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1722 |
hence "t \<noteq> taker" by (simp add: taker_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1723 |
moreover hence "t \<noteq> th" using assms neq_t_th by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1724 |
moreover have "t \<in> set rest" by (simp add: `t \<in> set wq'` th'_in_inv) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1725 |
ultimately have "waiting s t cs" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1726 |
by (metis waiting_raw_def insert_iff list.sel(1) s_waiting_abv set_simps(2) wq_def wq_s_cs) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1727 |
show ?thesis using that(2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1728 |
using True `t \<in> set wq'` `t \<noteq> taker` `waiting s t cs` eq_wq' by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1729 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1730 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1731 |
lemma holding_esI1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1732 |
assumes "c = cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1733 |
and "t = taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1734 |
shows "holding (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1735 |
by (unfold assms, simp add: holding_taker) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1736 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1737 |
lemma holding_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1738 |
assumes "holding (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1739 |
obtains "c = cs" "t = taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1740 |
| "c \<noteq> cs" "holding s t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1741 |
proof(cases "c = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1742 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1743 |
from assms[unfolded True, unfolded s_holding_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1744 |
folded wq_def, unfolded wq_es_cs] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1745 |
have "t = taker" by (simp add: taker_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1746 |
from that(1)[OF True this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1747 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1748 |
case False |
108 | 1749 |
hence "wq (e#s) c = wq s c" by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1750 |
from assms[unfolded s_holding_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1751 |
unfolded this, unfolded wq_def, folded s_holding_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1752 |
have "holding s t c" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1753 |
from that(2)[OF False this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1754 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1755 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1756 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1757 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1758 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1759 |
context valid_trace_v_e |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1760 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1761 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1762 |
lemma nil_wq': "wq' = []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1763 |
proof (unfold wq'_def, rule someI2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1764 |
show "distinct rest \<and> set rest = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1765 |
by (simp add: distinct_rest) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1766 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1767 |
fix x |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1768 |
assume " distinct x \<and> set x = set rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1769 |
thus "x = []" using rest_nil by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1770 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1771 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1772 |
lemma no_taker: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1773 |
assumes "next_th s th cs taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1774 |
shows "False" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1775 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1776 |
from assms[unfolded next_th_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1777 |
obtain rest' where "wq s cs = th # rest'" "rest' \<noteq> []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1778 |
by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1779 |
thus ?thesis using rest_def rest_nil by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1780 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1781 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1782 |
lemma waiting_set_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1783 |
"{(Th th', Cs cs) |th'. next_th s th cs th'} = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1784 |
using no_taker by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1785 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1786 |
lemma holding_set_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1787 |
"{(Cs cs, Th th') |th'. next_th s th cs th'} = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1788 |
using no_taker by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1789 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1790 |
lemma no_holding: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1791 |
assumes "holding (e#s) taker cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1792 |
shows False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1793 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1794 |
from wq_es_cs[unfolded nil_wq'] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1795 |
have " wq (e # s) cs = []" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1796 |
from assms[unfolded s_holding_def, folded wq_def, unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1797 |
show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1798 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1799 |
|
108 | 1800 |
lemma no_waiter_before: "\<not> waiting s t cs" |
1801 |
proof |
|
1802 |
assume otherwise: "waiting s t cs" |
|
1803 |
from this[unfolded s_waiting_def, folded wq_def, |
|
1804 |
unfolded wq_s_cs rest_nil] |
|
1805 |
show False by simp |
|
1806 |
qed |
|
1807 |
||
1808 |
lemma no_waiter_after: |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1809 |
assumes "waiting (e#s) t cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1810 |
shows False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1811 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1812 |
from wq_es_cs[unfolded nil_wq'] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1813 |
have " wq (e # s) cs = []" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1814 |
from assms[unfolded s_waiting_def, folded wq_def, unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1815 |
show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1816 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1817 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1818 |
lemma waiting_esI2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1819 |
assumes "waiting s t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1820 |
shows "waiting (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1821 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1822 |
have "c \<noteq> cs" using assms |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1823 |
using rest_nil wq_s_cs unfolding waiting_raw_def waiting_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1824 |
from waiting_esI1[OF assms this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1825 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1826 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1827 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1828 |
lemma waiting_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1829 |
assumes "waiting (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1830 |
obtains "c \<noteq> cs" "waiting s t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1831 |
proof(cases "c = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1832 |
case False |
108 | 1833 |
hence "wq (e#s) c = wq s c" by auto |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
1834 |
with assms have "waiting s t c" unfolding waiting_raw_def waiting_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1835 |
from that(1)[OF False this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1836 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1837 |
case True |
108 | 1838 |
from no_waiter_after[OF assms[unfolded True]] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1839 |
show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1840 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1841 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1842 |
lemma holding_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1843 |
assumes "holding (e#s) t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1844 |
obtains "c \<noteq> cs" "holding s t c" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1845 |
proof(cases "c = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1846 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1847 |
from no_holding[OF assms[unfolded True]] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1848 |
show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1849 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1850 |
case False |
108 | 1851 |
hence "wq (e#s) c = wq s c" by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1852 |
from assms[unfolded s_holding_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1853 |
unfolded this, unfolded wq_def, folded s_holding_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1854 |
have "holding s t c" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1855 |
from that[OF False this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1856 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1857 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1858 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1859 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1860 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1861 |
context valid_trace_v |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1862 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1863 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1864 |
lemma RAG_es: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1865 |
"RAG (e # s) = |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1866 |
RAG s - {(Cs cs, Th th)} - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1867 |
{(Th th', Cs cs) |th'. next_th s th cs th'} \<union> |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1868 |
{(Cs cs, Th th') |th'. next_th s th cs th'}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1869 |
proof(rule rel_eqI) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1870 |
fix n1 n2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1871 |
assume "(n1, n2) \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1872 |
thus "(n1, n2) \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1873 |
proof(cases rule:in_RAG_E) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1874 |
case (waiting th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1875 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1876 |
proof(cases "rest = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1877 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1878 |
interpret h_n: valid_trace_v_n s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1879 |
by (unfold_locales, insert False, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1880 |
from waiting(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1881 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1882 |
proof(cases rule:h_n.waiting_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1883 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1884 |
with waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1885 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1886 |
by (unfold h_n.waiting_set_eq h_n.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1887 |
fold waiting_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1888 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1889 |
case 2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1890 |
with waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1891 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1892 |
by (unfold h_n.waiting_set_eq h_n.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1893 |
fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1894 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1895 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1896 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1897 |
interpret h_e: valid_trace_v_e s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1898 |
by (unfold_locales, insert True, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1899 |
from waiting(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1900 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1901 |
proof(cases rule:h_e.waiting_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1902 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1903 |
with waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1904 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1905 |
by (unfold h_e.waiting_set_eq h_e.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1906 |
fold waiting_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1907 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1908 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1909 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1910 |
case (holding th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1911 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1912 |
proof(cases "rest = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1913 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1914 |
interpret h_n: valid_trace_v_n s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1915 |
by (unfold_locales, insert False, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1916 |
from holding(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1917 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1918 |
proof(cases rule:h_n.holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1919 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1920 |
with holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1921 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1922 |
by (unfold h_n.waiting_set_eq h_n.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1923 |
fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1924 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1925 |
case 2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1926 |
with holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1927 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1928 |
by (unfold h_n.waiting_set_eq h_n.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1929 |
fold holding_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1930 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1931 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1932 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1933 |
interpret h_e: valid_trace_v_e s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1934 |
by (unfold_locales, insert True, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1935 |
from holding(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1936 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1937 |
proof(cases rule:h_e.holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1938 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1939 |
with holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1940 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1941 |
by (unfold h_e.waiting_set_eq h_e.holding_set_eq s_RAG_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1942 |
fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1943 |
qed |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1944 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
1945 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1946 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1947 |
fix n1 n2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1948 |
assume h: "(n1, n2) \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1949 |
show "(n1, n2) \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1950 |
proof(cases "rest = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1951 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1952 |
interpret h_n: valid_trace_v_n s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1953 |
by (unfold_locales, insert False, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1954 |
from h[unfolded h_n.waiting_set_eq h_n.holding_set_eq] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1955 |
have "((n1, n2) \<in> RAG s \<and> (n1 \<noteq> Cs cs \<or> n2 \<noteq> Th th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1956 |
\<and> (n1 \<noteq> Th h_n.taker \<or> n2 \<noteq> Cs cs)) \<or> |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1957 |
(n2 = Th h_n.taker \<and> n1 = Cs cs)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1958 |
by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1959 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1960 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1961 |
assume "n2 = Th h_n.taker \<and> n1 = Cs cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1962 |
with h_n.holding_taker |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1963 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1964 |
by (unfold s_RAG_def, fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1965 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1966 |
assume h: "(n1, n2) \<in> RAG s \<and> |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1967 |
(n1 \<noteq> Cs cs \<or> n2 \<noteq> Th th) \<and> (n1 \<noteq> Th h_n.taker \<or> n2 \<noteq> Cs cs)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1968 |
hence "(n1, n2) \<in> RAG s" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1969 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1970 |
proof(cases rule:in_RAG_E) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1971 |
case (waiting th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1972 |
from h and this(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1973 |
have "th' \<noteq> h_n.taker \<or> cs' \<noteq> cs" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1974 |
hence "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1975 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1976 |
assume "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1977 |
from waiting_esI1[OF waiting(3) this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1978 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1979 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1980 |
assume neq_th': "th' \<noteq> h_n.taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1981 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1982 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1983 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1984 |
from waiting_esI1[OF waiting(3) this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1985 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1986 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1987 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1988 |
from h_n.waiting_esI2[OF waiting(3)[unfolded True] neq_th', folded True] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1989 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1990 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1991 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1992 |
thus ?thesis using waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1993 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1994 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1995 |
case (holding th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1996 |
from h this(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1997 |
have "cs' \<noteq> cs \<or> th' \<noteq> th" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1998 |
hence "holding (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
1999 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2000 |
assume "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2001 |
from holding_esI2[OF this holding(3)] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2002 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2003 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2004 |
assume "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2005 |
from holding_esI1[OF holding(3) this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2006 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2007 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2008 |
thus ?thesis using holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2009 |
by (unfold s_RAG_def, fold holding_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2010 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2011 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2012 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2013 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2014 |
interpret h_e: valid_trace_v_e s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2015 |
by (unfold_locales, insert True, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2016 |
from h[unfolded h_e.waiting_set_eq h_e.holding_set_eq] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2017 |
have h_s: "(n1, n2) \<in> RAG s" "(n1, n2) \<noteq> (Cs cs, Th th)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2018 |
by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2019 |
from h_s(1) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2020 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2021 |
proof(cases rule:in_RAG_E) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2022 |
case (waiting th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2023 |
from h_e.waiting_esI2[OF this(3)] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2024 |
show ?thesis using waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2025 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2026 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2027 |
case (holding th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2028 |
with h_s(2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2029 |
have "cs' \<noteq> cs \<or> th' \<noteq> th" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2030 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2031 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2032 |
assume neq_cs: "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2033 |
from holding_esI2[OF this holding(3)] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2034 |
show ?thesis using holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2035 |
by (unfold s_RAG_def, fold holding_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2036 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2037 |
assume "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2038 |
from holding_esI1[OF holding(3) this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2039 |
show ?thesis using holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2040 |
by (unfold s_RAG_def, fold holding_eq, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2041 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2042 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2043 |
qed |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2044 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2045 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2046 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2047 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2048 |
context valid_trace_p |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2049 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2050 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2051 |
lemma waiting_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2052 |
assumes "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2053 |
shows "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2054 |
using assms |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2055 |
unfolding th_not_in_wq waiting_eq waiting_raw_def |
107
30ed212f268a
updated Correctness, Implementation and PIPBasics so that they work with Isabelle 2014 and 2015
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
106
diff
changeset
|
2056 |
by (metis append_is_Nil_conv butlast_snoc hd_append2 in_set_butlastD |
30ed212f268a
updated Correctness, Implementation and PIPBasics so that they work with Isabelle 2014 and 2015
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
106
diff
changeset
|
2057 |
list.distinct(1) split_list wq_es_cs wq_neq_simp) |
100 | 2058 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2059 |
lemma holding_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2060 |
assumes "holding s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2061 |
shows "holding (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2062 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2063 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2064 |
hence "wq (e#s) cs' = wq s cs'" by simp |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2065 |
with assms show ?thesis unfolding holding_raw_def holding_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2066 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2067 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2068 |
from assms[unfolded s_holding_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2069 |
obtain rest where eq_wq: "wq s cs' = th'#rest" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2070 |
by (metis empty_iff list.collapse list.set(1)) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2071 |
hence "wq (e#s) cs' = th'#(rest@[th])" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2072 |
by (simp add: True wq_es_cs) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2073 |
thus ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2074 |
by (simp add: holding_raw_def holding_eq) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2075 |
qed |
100 | 2076 |
end |
2077 |
||
2078 |
lemma (in valid_trace_p) th_not_waiting: "\<not> waiting s th c" |
|
2079 |
proof - |
|
2080 |
have "th \<in> readys s" |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2081 |
using running_ready running_th_s by blast |
100 | 2082 |
thus ?thesis |
2083 |
by (unfold readys_def, auto) |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2084 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2085 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2086 |
context valid_trace_p_h |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2087 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2088 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2089 |
lemma wq_es_cs': "wq (e#s) cs = [th]" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2090 |
using wq_es_cs[unfolded we] by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2091 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2092 |
lemma holding_es_th_cs: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2093 |
shows "holding (e#s) th cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2094 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2095 |
from wq_es_cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2096 |
have "th \<in> set (wq (e#s) cs)" "th = hd (wq (e#s) cs)" by auto |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2097 |
thus ?thesis unfolding holding_raw_def holding_eq by blast |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2098 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2099 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2100 |
lemma RAG_edge: "(Cs cs, Th th) \<in> RAG (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2101 |
by (unfold s_RAG_def, fold holding_eq, insert holding_es_th_cs, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2102 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2103 |
lemma waiting_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2104 |
assumes "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2105 |
obtains "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2106 |
using assms |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
2107 |
by (metis empty_iff list.sel(1) list.set(1) s_waiting_def |
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
2108 |
set_ConsD wq_def wq_es_cs' wq_neq_simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2109 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2110 |
lemma holding_esE: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2111 |
assumes "holding (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2112 |
obtains "cs' \<noteq> cs" "holding s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2113 |
| "cs' = cs" "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2114 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2115 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2116 |
from held_unique[OF holding_es_th_cs assms[unfolded True]] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2117 |
have "th' = th" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2118 |
from that(2)[OF True this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2119 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2120 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2121 |
have "holding s th' cs'" using assms |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2122 |
using False unfolding holding_raw_def holding_eq by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2123 |
from that(1)[OF False this] show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2124 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2125 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2126 |
lemma RAG_es: "RAG (e # s) = RAG s \<union> {(Cs cs, Th th)}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2127 |
proof(rule rel_eqI) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2128 |
fix n1 n2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2129 |
assume "(n1, n2) \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2130 |
thus "(n1, n2) \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2131 |
proof(cases rule:in_RAG_E) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2132 |
case (waiting th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2133 |
from this(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2134 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2135 |
proof(cases rule:waiting_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2136 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2137 |
thus ?thesis using waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2138 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2139 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2140 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2141 |
case (holding th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2142 |
from this(3) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2143 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2144 |
proof(cases rule:holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2145 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2146 |
with holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2147 |
show ?thesis by (unfold s_RAG_def, fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2148 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2149 |
case 2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2150 |
with holding(1,2) show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2151 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2152 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2153 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2154 |
fix n1 n2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2155 |
assume "(n1, n2) \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2156 |
hence "(n1, n2) \<in> RAG s \<or> (n1 = Cs cs \<and> n2 = Th th)" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2157 |
thus "(n1, n2) \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2158 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2159 |
assume "(n1, n2) \<in> RAG s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2160 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2161 |
proof(cases rule:in_RAG_E) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2162 |
case (waiting th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2163 |
from waiting_kept[OF this(3)] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2164 |
show ?thesis using waiting(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2165 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2166 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2167 |
case (holding th' cs') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2168 |
from holding_kept[OF this(3)] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2169 |
show ?thesis using holding(1,2) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2170 |
by (unfold s_RAG_def, fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2171 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2172 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2173 |
assume "n1 = Cs cs \<and> n2 = Th th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2174 |
with holding_es_th_cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2175 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2176 |
by (unfold s_RAG_def, fold holding_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2177 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2178 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2179 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2180 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2181 |
|
100 | 2182 |
context valid_trace_p_w |
2183 |
begin |
|
2184 |
||
2185 |
lemma wq_s_cs: "wq s cs = holder#waiters" |
|
2186 |
by (simp add: holder_def waiters_def wne) |
|
2187 |
||
2188 |
lemma wq_es_cs': "wq (e#s) cs = holder#waiters@[th]" |
|
2189 |
by (simp add: wq_es_cs wq_s_cs) |
|
2190 |
||
2191 |
lemma waiting_es_th_cs: "waiting (e#s) th cs" |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2192 |
using th_not_in_wq waiting_eq wq_es_cs' wq_s_cs unfolding waiting_raw_def by auto |
100 | 2193 |
|
2194 |
lemma RAG_edge: "(Th th, Cs cs) \<in> RAG (e#s)" |
|
2195 |
by (unfold s_RAG_def, fold waiting_eq, insert waiting_es_th_cs, auto) |
|
2196 |
||
2197 |
lemma holding_esE: |
|
2198 |
assumes "holding (e#s) th' cs'" |
|
2199 |
obtains "holding s th' cs'" |
|
2200 |
using assms |
|
2201 |
proof(cases "cs' = cs") |
|
2202 |
case False |
|
2203 |
hence "wq (e#s) cs' = wq s cs'" by simp |
|
120
b3b8735c7c02
updated to Isabelle 2016
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
119
diff
changeset
|
2204 |
with assms show ?thesis using that |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2205 |
unfolding holding_raw_def holding_eq by auto |
100 | 2206 |
next |
2207 |
case True |
|
2208 |
with assms show ?thesis |
|
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
2209 |
using s_holding_def that wq_def wq_es_cs' wq_s_cs by auto |
100 | 2210 |
qed |
2211 |
||
2212 |
lemma waiting_esE: |
|
2213 |
assumes "waiting (e#s) th' cs'" |
|
2214 |
obtains "th' \<noteq> th" "waiting s th' cs'" |
|
2215 |
| "th' = th" "cs' = cs" |
|
2216 |
proof(cases "waiting s th' cs'") |
|
2217 |
case True |
|
2218 |
have "th' \<noteq> th" |
|
2219 |
proof |
|
2220 |
assume otherwise: "th' = th" |
|
2221 |
from True[unfolded this] |
|
2222 |
show False by (simp add: th_not_waiting) |
|
2223 |
qed |
|
2224 |
from that(1)[OF this True] show ?thesis . |
|
2225 |
next |
|
2226 |
case False |
|
2227 |
hence "th' = th \<and> cs' = cs" |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2228 |
by (metis assms waiting_raw_def holder_def list.sel(1) rotate1.simps(2) |
100 | 2229 |
set_ConsD set_rotate1 waiting_eq wq_es_cs wq_es_cs' wq_neq_simp) |
2230 |
with that(2) show ?thesis by metis |
|
2231 |
qed |
|
2232 |
||
2233 |
lemma RAG_es: "RAG (e # s) = RAG s \<union> {(Th th, Cs cs)}" (is "?L = ?R") |
|
2234 |
proof(rule rel_eqI) |
|
2235 |
fix n1 n2 |
|
2236 |
assume "(n1, n2) \<in> ?L" |
|
2237 |
thus "(n1, n2) \<in> ?R" |
|
2238 |
proof(cases rule:in_RAG_E) |
|
2239 |
case (waiting th' cs') |
|
2240 |
from this(3) |
|
2241 |
show ?thesis |
|
2242 |
proof(cases rule:waiting_esE) |
|
2243 |
case 1 |
|
2244 |
thus ?thesis using waiting(1,2) |
|
2245 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
|
2246 |
next |
|
2247 |
case 2 |
|
2248 |
thus ?thesis using waiting(1,2) by auto |
|
2249 |
qed |
|
2250 |
next |
|
2251 |
case (holding th' cs') |
|
2252 |
from this(3) |
|
2253 |
show ?thesis |
|
2254 |
proof(cases rule:holding_esE) |
|
2255 |
case 1 |
|
2256 |
with holding(1,2) |
|
2257 |
show ?thesis by (unfold s_RAG_def, fold holding_eq, auto) |
|
2258 |
qed |
|
2259 |
qed |
|
2260 |
next |
|
2261 |
fix n1 n2 |
|
2262 |
assume "(n1, n2) \<in> ?R" |
|
2263 |
hence "(n1, n2) \<in> RAG s \<or> (n1 = Th th \<and> n2 = Cs cs)" by auto |
|
2264 |
thus "(n1, n2) \<in> ?L" |
|
2265 |
proof |
|
2266 |
assume "(n1, n2) \<in> RAG s" |
|
2267 |
thus ?thesis |
|
2268 |
proof(cases rule:in_RAG_E) |
|
2269 |
case (waiting th' cs') |
|
2270 |
from waiting_kept[OF this(3)] |
|
2271 |
show ?thesis using waiting(1,2) |
|
2272 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
|
2273 |
next |
|
2274 |
case (holding th' cs') |
|
2275 |
from holding_kept[OF this(3)] |
|
2276 |
show ?thesis using holding(1,2) |
|
2277 |
by (unfold s_RAG_def, fold holding_eq, auto) |
|
2278 |
qed |
|
2279 |
next |
|
2280 |
assume "n1 = Th th \<and> n2 = Cs cs" |
|
2281 |
thus ?thesis using RAG_edge by auto |
|
2282 |
qed |
|
2283 |
qed |
|
2284 |
||
2285 |
end |
|
2286 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2287 |
context valid_trace_p |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2288 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2289 |
|
100 | 2290 |
lemma RAG_es: "RAG (e # s) = (if (wq s cs = []) then RAG s \<union> {(Cs cs, Th th)} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2291 |
else RAG s \<union> {(Th th, Cs cs)})" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2292 |
proof(cases "wq s cs = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2293 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2294 |
interpret vt_p: valid_trace_p_h using True |
63 | 2295 |
by (unfold_locales, simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2296 |
show ?thesis by (simp add: vt_p.RAG_es vt_p.we) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2297 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2298 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2299 |
interpret vt_p: valid_trace_p_w using False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2300 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2301 |
show ?thesis by (simp add: vt_p.RAG_es vt_p.wne) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2302 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2303 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2304 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2305 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2306 |
subsection {* RAG is finite *} |
100 | 2307 |
|
110
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2308 |
context valid_trace_v |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2309 |
begin |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2310 |
|
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2311 |
lemma |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2312 |
finite_RAG_kept: |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2313 |
assumes "finite (RAG s)" |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2314 |
shows "finite (RAG (e#s))" |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2315 |
proof(cases "rest = []") |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2316 |
case True |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2317 |
interpret vt: valid_trace_v_e using True |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2318 |
by (unfold_locales, simp) |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2319 |
show ?thesis using assms |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2320 |
by (unfold RAG_es vt.waiting_set_eq vt.holding_set_eq, simp) |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2321 |
next |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2322 |
case False |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2323 |
interpret vt: valid_trace_v_n using False |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2324 |
by (unfold_locales, simp) |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2325 |
show ?thesis using assms |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2326 |
by (unfold RAG_es vt.waiting_set_eq vt.holding_set_eq, simp) |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2327 |
qed |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2328 |
|
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2329 |
end |
4782d82c3ae9
About to change the proof of waiting_unique_pre and waiting_unqie.
zhangx
parents:
109
diff
changeset
|
2330 |
|
100 | 2331 |
context valid_trace |
2332 |
begin |
|
2333 |
||
2334 |
lemma finite_RAG: |
|
2335 |
shows "finite (RAG s)" |
|
2336 |
proof(induct rule:ind) |
|
2337 |
case Nil |
|
2338 |
show ?case |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2339 |
by (auto simp: s_RAG_def waiting_raw_def |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2340 |
holding_raw_def wq_def acyclic_def) |
100 | 2341 |
next |
2342 |
case (Cons s e) |
|
2343 |
interpret vt_e: valid_trace_e s e using Cons by simp |
|
2344 |
show ?case |
|
2345 |
proof(cases e) |
|
2346 |
case (Create th prio) |
|
2347 |
interpret vt: valid_trace_create s e th prio using Create |
|
2348 |
by (unfold_locales, simp) |
|
2349 |
show ?thesis using Cons by simp |
|
2350 |
next |
|
2351 |
case (Exit th) |
|
2352 |
interpret vt: valid_trace_exit s e th using Exit |
|
2353 |
by (unfold_locales, simp) |
|
2354 |
show ?thesis using Cons by simp |
|
2355 |
next |
|
2356 |
case (P th cs) |
|
2357 |
interpret vt: valid_trace_p s e th cs using P |
|
2358 |
by (unfold_locales, simp) |
|
2359 |
show ?thesis using Cons using vt.RAG_es by auto |
|
2360 |
next |
|
2361 |
case (V th cs) |
|
2362 |
interpret vt: valid_trace_v s e th cs using V |
|
2363 |
by (unfold_locales, simp) |
|
2364 |
show ?thesis using Cons by (simp add: vt.finite_RAG_kept) |
|
2365 |
next |
|
2366 |
case (Set th prio) |
|
2367 |
interpret vt: valid_trace_set s e th prio using Set |
|
2368 |
by (unfold_locales, simp) |
|
2369 |
show ?thesis using Cons by simp |
|
2370 |
qed |
|
2371 |
qed |
|
2372 |
end |
|
2373 |
||
111 | 2374 |
subsection {* Uniqueness of waiting *} |
2375 |
||
2376 |
text {* |
|
112 | 2377 |
{\em Uniqueness of waiting} means that |
2378 |
a thread can only be blocked on one resource. |
|
2379 |
This property is needed in order to prove that @{term RAG} |
|
2380 |
is acyclic. Therefore, we need to prove it first in the following |
|
2381 |
lemma @{text "waiting_unqiue"}, all lemmas before it are auxiliary. |
|
2382 |
||
2383 |
The property is expressed by the following predicate over system |
|
2384 |
state (or event trace), which is also named @{text "waiting_unqiue"}. |
|
111 | 2385 |
*} |
2386 |
||
2387 |
definition |
|
2388 |
"waiting_unique (ss::state) = |
|
2389 |
(\<forall> th cs1 cs2. waiting ss th cs1 \<longrightarrow> |
|
2390 |
waiting ss th cs2 \<longrightarrow> cs1 = cs2)" |
|
2391 |
||
2392 |
text {* |
|
2393 |
We are going to show (in the |
|
2394 |
lemma named @{text waiting_unique}) that |
|
2395 |
this property holds on any valid trace (or system state). |
|
2396 |
*} |
|
2397 |
||
2398 |
text {* |
|
112 | 2399 |
As a first step to prove lemma @{text "waiting_unqiue"}, |
2400 |
we need to understand how |
|
111 | 2401 |
a thread is get blocked. |
2402 |
We show in the following lemmas |
|
2403 |
(all named @{text "waiting_inv"}) that |
|
2404 |
@{term P}-operation is the only cause. |
|
100 | 2405 |
*} |
2406 |
||
111 | 2407 |
context valid_trace_create |
2408 |
begin |
|
2409 |
lemma waiting_inv: |
|
2410 |
assumes "\<not> waiting s th' cs'" |
|
2411 |
and "waiting (e#s) th' cs'" |
|
2412 |
shows "e = P th' cs'" |
|
2413 |
using assms |
|
2414 |
by (unfold s_waiting_def, fold wq_def, simp) |
|
2415 |
end |
|
2416 |
||
2417 |
context valid_trace_set |
|
2418 |
begin |
|
2419 |
lemma waiting_inv: |
|
2420 |
assumes "\<not> waiting s th' cs'" |
|
2421 |
and "waiting (e#s) th' cs'" |
|
2422 |
shows "e = P th' cs'" |
|
2423 |
using assms |
|
2424 |
by (unfold s_waiting_def, fold wq_def, simp) |
|
2425 |
end |
|
2426 |
||
2427 |
context valid_trace_exit |
|
2428 |
begin |
|
2429 |
lemma waiting_inv: |
|
2430 |
assumes "\<not> waiting s th' cs'" |
|
2431 |
and "waiting (e#s) th' cs'" |
|
2432 |
shows "e = P th' cs'" |
|
2433 |
using assms |
|
2434 |
by (unfold s_waiting_def, fold wq_def, simp) |
|
2435 |
end |
|
2436 |
||
2437 |
context valid_trace_p |
|
2438 |
begin |
|
2439 |
||
2440 |
lemma waiting_inv: |
|
2441 |
assumes "\<not> waiting s th' cs'" |
|
2442 |
and "waiting (e#s) th' cs'" |
|
2443 |
shows "e = P th' cs'" |
|
2444 |
proof(cases "cs' = cs") |
|
2445 |
case True |
|
2446 |
moreover have "th' = th" |
|
2447 |
proof(rule ccontr) |
|
2448 |
assume otherwise: "th' \<noteq> th" |
|
2449 |
have "waiting s th' cs'" |
|
2450 |
proof - |
|
2451 |
from assms(2)[unfolded True s_waiting_def, |
|
2452 |
folded wq_def, unfolded wq_es_cs] |
|
2453 |
have h: "th' \<in> set (wq s cs @ [th])" |
|
2454 |
"th' \<noteq> hd (wq s cs @ [th])" by auto |
|
2455 |
from h(1) and otherwise |
|
2456 |
have "th' \<in> set (wq s cs)" by auto |
|
2457 |
hence "wq s cs \<noteq> []" by auto |
|
2458 |
hence "hd (wq s cs @ [th]) = hd (wq s cs)" by auto |
|
2459 |
with h otherwise |
|
2460 |
have "waiting s th' cs" |
|
2461 |
by (unfold s_waiting_def, fold wq_def, auto) |
|
2462 |
from this[folded True] show ?thesis . |
|
2463 |
qed |
|
2464 |
with assms(1) show False by simp |
|
2465 |
qed |
|
2466 |
ultimately show ?thesis using is_p by simp |
|
2467 |
next |
|
2468 |
case False |
|
2469 |
hence "wq (e#s) cs' = wq s cs'" by simp |
|
2470 |
from assms[unfolded s_waiting_def, folded wq_def, |
|
2471 |
unfolded this] |
|
2472 |
show ?thesis by simp |
|
2473 |
qed |
|
2474 |
||
2475 |
end |
|
2476 |
||
2477 |
context valid_trace_v_n |
|
2478 |
begin |
|
2479 |
||
2480 |
lemma waiting_inv: |
|
2481 |
assumes "\<not> waiting s th' cs'" |
|
2482 |
and "waiting (e#s) th' cs'" |
|
2483 |
shows "e = P th' cs'" |
|
2484 |
proof - |
|
2485 |
from assms(2) |
|
2486 |
show ?thesis |
|
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2487 |
by (cases rule:waiting_esE, insert assms, auto) |
111 | 2488 |
qed |
2489 |
||
2490 |
end |
|
2491 |
||
2492 |
context valid_trace_v_e |
|
2493 |
begin |
|
2494 |
||
2495 |
lemma waiting_inv: |
|
2496 |
assumes "\<not> waiting s th' cs'" |
|
2497 |
and "waiting (e#s) th' cs'" |
|
2498 |
shows "e = P th' cs'" |
|
2499 |
proof - |
|
2500 |
from assms(2) |
|
2501 |
show ?thesis |
|
2502 |
by (cases rule:waiting_esE, insert assms, auto) |
|
2503 |
qed |
|
2504 |
||
2505 |
end |
|
2506 |
||
2507 |
context valid_trace_e |
|
2508 |
begin |
|
2509 |
||
2510 |
lemma waiting_inv: |
|
2511 |
assumes "\<not> waiting s th cs" |
|
2512 |
and "waiting (e#s) th cs" |
|
2513 |
shows "e = P th cs" |
|
2514 |
proof(cases e) |
|
2515 |
case (Create th' prio') |
|
2516 |
then interpret vt: valid_trace_create s e th' prio' |
|
2517 |
by (unfold_locales, simp) |
|
2518 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2519 |
next |
|
2520 |
case (Exit th') |
|
2521 |
then interpret vt: valid_trace_exit s e th' |
|
2522 |
by (unfold_locales, simp) |
|
2523 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2524 |
next |
|
2525 |
case (Set th' prio') |
|
2526 |
then interpret vt: valid_trace_set s e th' prio' |
|
2527 |
by (unfold_locales, simp) |
|
2528 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2529 |
next |
|
2530 |
case (P th' cs') |
|
2531 |
then interpret vt: valid_trace_p s e th' cs' |
|
2532 |
by (unfold_locales, simp) |
|
2533 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2534 |
next |
|
2535 |
case (V th' cs') |
|
2536 |
then interpret vt_e: valid_trace_v s e th' cs' |
|
2537 |
by (unfold_locales, simp) |
|
2538 |
show ?thesis |
|
2539 |
proof(cases "vt_e.rest = []") |
|
2540 |
case True |
|
2541 |
then interpret vt: valid_trace_v_e s e th' cs' |
|
2542 |
by (unfold_locales, simp) |
|
2543 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2544 |
next |
|
2545 |
case False |
|
2546 |
then interpret vt: valid_trace_v_n s e th' cs' |
|
2547 |
by (unfold_locales, simp) |
|
2548 |
show ?thesis using vt.waiting_inv[OF assms] by simp |
|
2549 |
qed |
|
2550 |
qed |
|
2551 |
||
112 | 2552 |
text {* |
2553 |
Now, with @{thm waiting_inv} in place, the following lemma |
|
2554 |
shows the uniqueness of waiting is kept by every operation |
|
2555 |
in the PIP protocol. This lemma constitutes the main part |
|
2556 |
in the proof of lemma @{text "waiting_unique"}. |
|
2557 |
*} |
|
2558 |
||
111 | 2559 |
lemma waiting_unique_kept: |
2560 |
assumes "waiting_unique s" |
|
2561 |
shows "waiting_unique (e#s)" |
|
2562 |
proof - |
|
2563 |
note h = assms[unfolded waiting_unique_def, rule_format] |
|
2564 |
{ fix th cs1 cs2 |
|
2565 |
assume w1: "waiting (e#s) th cs1" |
|
2566 |
and w2: "waiting (e#s) th cs2" |
|
2567 |
have "cs1 = cs2" |
|
2568 |
proof(rule ccontr) |
|
2569 |
assume otherwise: "cs1 \<noteq> cs2" |
|
2570 |
show False |
|
2571 |
proof(cases "waiting s th cs1") |
|
2572 |
case True |
|
2573 |
from h[OF this] and otherwise |
|
2574 |
have "\<not> waiting s th cs2" by auto |
|
2575 |
from waiting_inv[OF this w2] |
|
2576 |
have "e = P th cs2" . |
|
2577 |
then interpret vt: valid_trace_p s e th cs2 |
|
2578 |
by (unfold_locales, simp) |
|
2579 |
from vt.th_not_waiting and True |
|
2580 |
show ?thesis by simp |
|
2581 |
next |
|
2582 |
case False |
|
2583 |
from waiting_inv[OF this w1] |
|
2584 |
have "e = P th cs1" . |
|
2585 |
then interpret vt: valid_trace_p s e th cs1 |
|
2586 |
by (unfold_locales, simp) |
|
2587 |
have "wq (e # s) cs2 = wq s cs2" |
|
2588 |
using otherwise by simp |
|
2589 |
from w2[unfolded s_waiting_def, folded wq_def, |
|
2590 |
unfolded this] |
|
2591 |
have "waiting s th cs2" |
|
2592 |
by (unfold s_waiting_def, fold wq_def, simp) |
|
2593 |
thus ?thesis by (simp add: vt.th_not_waiting) |
|
2594 |
qed |
|
2595 |
qed |
|
2596 |
} thus ?thesis by (unfold waiting_unique_def, auto) |
|
2597 |
qed |
|
2598 |
||
2599 |
end |
|
100 | 2600 |
|
2601 |
context valid_trace |
|
2602 |
begin |
|
2603 |
||
112 | 2604 |
text {* |
2605 |
With @{thm valid_trace_e.waiting_unique_kept} in place, |
|
2606 |
the proof of the following lemma @{text "waiting_unique"} |
|
2607 |
needs only a very simple induction. |
|
2608 |
*} |
|
2609 |
||
111 | 2610 |
lemma waiting_unique |
2611 |
[unfolded waiting_unique_def, rule_format]: |
|
2612 |
shows "waiting_unique s" |
|
2613 |
proof(induct rule:ind) |
|
2614 |
case Nil |
|
2615 |
show ?case |
|
2616 |
by (unfold waiting_unique_def s_waiting_def, simp) |
|
2617 |
next |
|
2618 |
case (Cons s e) |
|
2619 |
then interpret vt: valid_trace_e s e by simp |
|
2620 |
show ?case using Cons(2) vt.waiting_unique_kept |
|
2621 |
by simp |
|
100 | 2622 |
qed |
2623 |
||
2624 |
end |
|
2625 |
||
112 | 2626 |
|
111 | 2627 |
subsection {* Acyclic keeping *} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2628 |
|
112 | 2629 |
text {* |
2630 |
To prove that @{term RAG} is acyclic, we need to show the acyclic property |
|
2631 |
is preserved by all system operations. There are only two non-trivial cases, |
|
2632 |
the @{term P} and @{term V} operation, where are treated in the following |
|
2633 |
locales, under the name @{text "acylic_RAG_kept"}: |
|
2634 |
*} |
|
2635 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2636 |
context valid_trace_v_e |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2637 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2638 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2639 |
lemma |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2640 |
acylic_RAG_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2641 |
assumes "acyclic (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2642 |
shows "acyclic (RAG (e#s))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2643 |
proof(rule acyclic_subset[OF assms]) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2644 |
show "RAG (e # s) \<subseteq> RAG s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2645 |
by (unfold RAG_es waiting_set_eq holding_set_eq, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2646 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2647 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2648 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2649 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2650 |
context valid_trace_v_n |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2651 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2652 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2653 |
lemma waiting_taker: "waiting s taker cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2654 |
apply (unfold s_waiting_def, fold wq_def, unfold wq_s_cs taker_def) |
111 | 2655 |
using eq_wq' set_wq' th_not_in_rest by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2656 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2657 |
lemma |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2658 |
acylic_RAG_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2659 |
assumes "acyclic (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2660 |
shows "acyclic (RAG (e#s))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2661 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2662 |
have "acyclic ((RAG s - {(Cs cs, Th th)} - {(Th taker, Cs cs)}) \<union> |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2663 |
{(Cs cs, Th taker)})" (is "acyclic (?A \<union> _)") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2664 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2665 |
from assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2666 |
have "acyclic ?A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2667 |
by (rule acyclic_subset, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2668 |
moreover have "(Th taker, Cs cs) \<notin> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2669 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2670 |
assume otherwise: "(Th taker, Cs cs) \<in> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2671 |
hence "(Th taker, Cs cs) \<in> ?A^+" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2672 |
by (unfold rtrancl_eq_or_trancl, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2673 |
from tranclD[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2674 |
obtain cs' where h: "(Th taker, Cs cs') \<in> ?A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2675 |
"(Th taker, Cs cs') \<in> RAG s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2676 |
by (unfold s_RAG_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2677 |
from this(2) have "waiting s taker cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2678 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
100 | 2679 |
from waiting_unique[OF this waiting_taker] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2680 |
have "cs' = cs" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2681 |
from h(1)[unfolded this] show False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2682 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2683 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2684 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2685 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2686 |
by (unfold RAG_es waiting_set_eq holding_set_eq, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2687 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2688 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2689 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2690 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2691 |
context valid_trace_p_h |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2692 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2693 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2694 |
lemma |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2695 |
acylic_RAG_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2696 |
assumes "acyclic (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2697 |
shows "acyclic (RAG (e#s))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2698 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2699 |
have "acyclic (RAG s \<union> {(Cs cs, Th th)})" (is "acyclic (?A \<union> _)") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2700 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2701 |
from assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2702 |
have "acyclic ?A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2703 |
by (rule acyclic_subset, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2704 |
moreover have "(Th th, Cs cs) \<notin> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2705 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2706 |
assume otherwise: "(Th th, Cs cs) \<in> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2707 |
hence "(Th th, Cs cs) \<in> ?A^+" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2708 |
by (unfold rtrancl_eq_or_trancl, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2709 |
from tranclD[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2710 |
obtain cs' where h: "(Th th, Cs cs') \<in> RAG s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2711 |
by (unfold s_RAG_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2712 |
hence "waiting s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2713 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
101 | 2714 |
with th_not_waiting show False by auto |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2715 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2716 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2717 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2718 |
thus ?thesis by (unfold RAG_es, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2719 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2720 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2721 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2722 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2723 |
context valid_trace_p_w |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2724 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2725 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2726 |
lemma |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2727 |
acylic_RAG_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2728 |
assumes "acyclic (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2729 |
shows "acyclic (RAG (e#s))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2730 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2731 |
have "acyclic (RAG s \<union> {(Th th, Cs cs)})" (is "acyclic (?A \<union> _)") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2732 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2733 |
from assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2734 |
have "acyclic ?A" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2735 |
by (rule acyclic_subset, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2736 |
moreover have "(Cs cs, Th th) \<notin> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2737 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2738 |
assume otherwise: "(Cs cs, Th th) \<in> ?A^*" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2739 |
from pip_e[unfolded is_p] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2740 |
show False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2741 |
proof(cases) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2742 |
case (thread_P) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2743 |
moreover from otherwise have "(Cs cs, Th th) \<in> ?A^+" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2744 |
by (unfold rtrancl_eq_or_trancl, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2745 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2746 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2747 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2748 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2749 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2750 |
thus ?thesis by (unfold RAG_es, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2751 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2752 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2753 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2754 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2755 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2756 |
subsection {* RAG is acyclic *} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2757 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2758 |
context valid_trace |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2759 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2760 |
|
112 | 2761 |
text {* |
2762 |
With these @{text "acylic_RAG_kept"}-lemmas proved, |
|
2763 |
the proof of the following @{text "acyclic_RAG"} is |
|
2764 |
straight forward. |
|
2765 |
*} |
|
2766 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2767 |
lemma acyclic_RAG: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2768 |
shows "acyclic (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2769 |
proof(induct rule:ind) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2770 |
case Nil |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2771 |
show ?case |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2772 |
by (auto simp: s_RAG_def waiting_raw_def |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
2773 |
holding_raw_def wq_def acyclic_def) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2774 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2775 |
case (Cons s e) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2776 |
interpret vt_e: valid_trace_e s e using Cons by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2777 |
show ?case |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2778 |
proof(cases e) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2779 |
case (Create th prio) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2780 |
interpret vt: valid_trace_create s e th prio using Create |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2781 |
by (unfold_locales, simp) |
100 | 2782 |
show ?thesis using Cons by simp |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2783 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2784 |
case (Exit th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2785 |
interpret vt: valid_trace_exit s e th using Exit |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2786 |
by (unfold_locales, simp) |
100 | 2787 |
show ?thesis using Cons by simp |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2788 |
next |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2789 |
case (P th cs) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2790 |
interpret vt: valid_trace_p s e th cs using P |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2791 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2792 |
show ?thesis |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2793 |
proof(cases "wq s cs = []") |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2794 |
case True |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2795 |
then interpret vt_h: valid_trace_p_h s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2796 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2797 |
show ?thesis using Cons by (simp add: vt_h.acylic_RAG_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2798 |
next |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2799 |
case False |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2800 |
then interpret vt_w: valid_trace_p_w s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2801 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2802 |
show ?thesis using Cons by (simp add: vt_w.acylic_RAG_kept) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2803 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2804 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2805 |
case (V th cs) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2806 |
interpret vt: valid_trace_v s e th cs using V |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2807 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2808 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2809 |
proof(cases "vt.rest = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2810 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2811 |
then interpret vt_e: valid_trace_v_e s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2812 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2813 |
show ?thesis by (simp add: Cons.hyps(2) vt_e.acylic_RAG_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2814 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2815 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2816 |
then interpret vt_n: valid_trace_v_n s e th cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2817 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2818 |
show ?thesis by (simp add: Cons.hyps(2) vt_n.acylic_RAG_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2819 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2820 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2821 |
case (Set th prio) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2822 |
interpret vt: valid_trace_set s e th prio using Set |
63 | 2823 |
by (unfold_locales, simp) |
100 | 2824 |
show ?thesis using Cons by simp |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2825 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2826 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2827 |
|
100 | 2828 |
end |
2829 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2830 |
subsection {* RAG is single-valued *} |
100 | 2831 |
|
112 | 2832 |
text {* |
2833 |
The proof that @{term RAG} is single-valued makes use of |
|
2834 |
@{text "unique_waiting"} and @{thm held_unique} and the |
|
2835 |
proof itself is very simple: |
|
2836 |
*} |
|
2837 |
||
100 | 2838 |
context valid_trace |
2839 |
begin |
|
2840 |
||
2841 |
lemma unique_RAG: "\<lbrakk>(n, n1) \<in> RAG s; (n, n2) \<in> RAG s\<rbrakk> \<Longrightarrow> n1 = n2" |
|
2842 |
apply(unfold s_RAG_def, auto, fold waiting_eq holding_eq) |
|
2843 |
by(auto elim:waiting_unique held_unique) |
|
2844 |
||
2845 |
lemma sgv_RAG: "single_valued (RAG s)" |
|
2846 |
using unique_RAG by (auto simp:single_valued_def) |
|
2847 |
||
2848 |
end |
|
2849 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2850 |
subsection {* RAG is well-founded *} |
100 | 2851 |
|
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2852 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2853 |
In this section, it is proved that both @{term RAG} and |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2854 |
its converse @{term "(RAG s)^-1"} are well-founded. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2855 |
The proof is very simple with the help of |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2856 |
already proved fact that @{term RAG} is finite. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2857 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2858 |
|
100 | 2859 |
context valid_trace |
2860 |
begin |
|
2861 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2862 |
lemma wf_RAG: "wf (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2863 |
proof(rule finite_acyclic_wf) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2864 |
from finite_RAG show "finite (RAG s)" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2865 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2866 |
from acyclic_RAG show "acyclic (RAG s)" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2867 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2868 |
|
100 | 2869 |
lemma wf_RAG_converse: |
2870 |
shows "wf ((RAG s)^-1)" |
|
2871 |
proof(rule finite_acyclic_wf_converse) |
|
2872 |
from finite_RAG |
|
2873 |
show "finite (RAG s)" . |
|
2874 |
next |
|
2875 |
from acyclic_RAG |
|
2876 |
show "acyclic (RAG s)" . |
|
2877 |
qed |
|
2878 |
||
2879 |
end |
|
2880 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2881 |
subsection {* RAG forms a finite-branching forest (or tree) *} |
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2882 |
|
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2883 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2884 |
With all the well-formedness proofs about @{term RAG} in place, |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2885 |
it is easy to show. |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2886 |
*} |
100 | 2887 |
|
2888 |
context valid_trace |
|
2889 |
begin |
|
2890 |
||
2891 |
lemma rtree_RAG: "rtree (RAG s)" |
|
2892 |
using sgv_RAG acyclic_RAG |
|
2893 |
by (unfold rtree_def rtree_axioms_def sgv_def, auto) |
|
2894 |
||
2895 |
end |
|
2896 |
||
121
c80a08ff2a85
added ? to PIPBasics
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
120
diff
changeset
|
2897 |
sublocale valid_trace < rtree_RAG?: rtree "RAG s" |
100 | 2898 |
using rtree_RAG . |
2899 |
||
121
c80a08ff2a85
added ? to PIPBasics
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
120
diff
changeset
|
2900 |
sublocale valid_trace < fsbtRAGs?: fsubtree "RAG s" |
100 | 2901 |
proof - |
2902 |
show "fsubtree (RAG s)" |
|
2903 |
proof(intro_locales) |
|
2904 |
show "fbranch (RAG s)" using finite_fbranchI[OF finite_RAG] . |
|
2905 |
next |
|
2906 |
show "fsubtree_axioms (RAG s)" |
|
2907 |
proof(unfold fsubtree_axioms_def) |
|
2908 |
from wf_RAG show "wf (RAG s)" . |
|
2909 |
qed |
|
2910 |
qed |
|
2911 |
qed |
|
2912 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2913 |
subsection {* Derived properties for sub-graphs of RAG *} |
100 | 2914 |
|
2915 |
context valid_trace |
|
2916 |
begin |
|
2917 |
||
2918 |
lemma acyclic_tRAG: "acyclic (tRAG s)" |
|
2919 |
proof(unfold tRAG_def, rule acyclic_compose) |
|
2920 |
show "acyclic (RAG s)" using acyclic_RAG . |
|
2921 |
next |
|
2922 |
show "wRAG s \<subseteq> RAG s" unfolding RAG_split by auto |
|
2923 |
next |
|
2924 |
show "hRAG s \<subseteq> RAG s" unfolding RAG_split by auto |
|
2925 |
qed |
|
2926 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2927 |
lemma sgv_wRAG: "single_valued (wRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2928 |
using waiting_unique |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2929 |
by (unfold single_valued_def wRAG_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2930 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2931 |
lemma sgv_hRAG: "single_valued (hRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2932 |
using held_unique |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2933 |
by (unfold single_valued_def hRAG_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2934 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2935 |
lemma sgv_tRAG: "single_valued (tRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2936 |
by (unfold tRAG_def, rule single_valued_relcomp, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2937 |
insert sgv_wRAG sgv_hRAG, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2938 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2939 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2940 |
|
113
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2941 |
text {* |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2942 |
It can be shown that @{term tRAG} is also a |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2943 |
finite-branch relational tree (or forest): |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2944 |
*} |
ce85c3c4e5bf
More improvements in PIPBasics.thy and Implemenation.thy.
zhangx
parents:
112
diff
changeset
|
2945 |
|
121
c80a08ff2a85
added ? to PIPBasics
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
120
diff
changeset
|
2946 |
sublocale valid_trace < rtree_s?: rtree "tRAG s" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2947 |
proof(unfold_locales) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2948 |
from sgv_tRAG show "single_valued (tRAG s)" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2949 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2950 |
from acyclic_tRAG show "acyclic (tRAG s)" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2951 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2952 |
|
121
c80a08ff2a85
added ? to PIPBasics
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
120
diff
changeset
|
2953 |
sublocale valid_trace < fsbttRAGs?: fsubtree "tRAG s" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2954 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2955 |
have "fsubtree (tRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2956 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2957 |
have "fbranch (tRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2958 |
proof(unfold tRAG_def, rule fbranch_compose) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2959 |
show "fbranch (wRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2960 |
proof(rule finite_fbranchI) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2961 |
from finite_RAG show "finite (wRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2962 |
by (unfold RAG_split, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2963 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2964 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2965 |
show "fbranch (hRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2966 |
proof(rule finite_fbranchI) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2967 |
from finite_RAG |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2968 |
show "finite (hRAG s)" by (unfold RAG_split, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2969 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2970 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2971 |
moreover have "wf (tRAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2972 |
proof(rule wf_subset) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2973 |
show "wf (RAG s O RAG s)" using wf_RAG |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2974 |
by (fold wf_comp_self, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2975 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2976 |
show "tRAG s \<subseteq> (RAG s O RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2977 |
by (unfold tRAG_alt_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2978 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2979 |
ultimately show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2980 |
by (unfold fsubtree_def fsubtree_axioms_def,auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2981 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2982 |
from this[folded tRAG_def] show "fsubtree (tRAG s)" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2983 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2984 |
|
101 | 2985 |
section {* Chain to readys *} |
100 | 2986 |
|
114 | 2987 |
text {* |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2988 |
In this section, based on the just derived |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2989 |
properties about the shape of @{term RAG}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2990 |
a more complete view of the relationship |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2991 |
between threads is established. |
114 | 2992 |
*} |
2993 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2994 |
context valid_trace |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
2995 |
begin |
53
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
2996 |
|
114 | 2997 |
text {* |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2998 |
The first lemma is technical, which says out of any node |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
2999 |
in the domain of @{term RAG}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3000 |
(no matter whether it is thread node or resource node) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3001 |
there is a path leading to a ready thread. |
114 | 3002 |
*} |
3003 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3004 |
lemma chain_building: |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3005 |
assumes "node \<in> Domain (RAG s)" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3006 |
obtains th' where "th' \<in> readys s" "(node, Th th') \<in> (RAG s)^+" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3007 |
proof - |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3008 |
from assms have "node \<in> Range ((RAG s)^-1)" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3009 |
from wf_base[OF wf_RAG_converse this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3010 |
obtain b where h_b: "(b, node) \<in> ((RAG s)\<inverse>)\<^sup>+" "\<forall>c. (c, b) \<notin> (RAG s)\<inverse>" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3011 |
obtain th' where eq_b: "b = Th th'" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3012 |
proof(cases b) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3013 |
case (Cs cs) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3014 |
from h_b(1)[unfolded trancl_converse] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3015 |
have "(node, b) \<in> ((RAG s)\<^sup>+)" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3016 |
from tranclE[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3017 |
obtain n where "(n, b) \<in> RAG s" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3018 |
from this[unfolded Cs] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3019 |
obtain th1 where "waiting s th1 cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3020 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3021 |
from waiting_holding[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3022 |
obtain th2 where "holding s th2 cs" . |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3023 |
hence "(Cs cs, Th th2) \<in> RAG s" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3024 |
by (unfold s_RAG_def, fold holding_eq, auto) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3025 |
with h_b(2)[unfolded Cs, rule_format] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3026 |
have False by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3027 |
thus ?thesis by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3028 |
qed auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3029 |
have "th' \<in> readys s" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3030 |
proof - |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3031 |
from h_b(2)[unfolded eq_b] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3032 |
have "\<forall>cs. \<not> waiting s th' cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3033 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3034 |
moreover have "th' \<in> threads s" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3035 |
proof(rule rg_RAG_threads) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3036 |
from tranclD[OF h_b(1), unfolded eq_b] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3037 |
obtain z where "(z, Th th') \<in> (RAG s)" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3038 |
thus "Th th' \<in> Range (RAG s)" by auto |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3039 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3040 |
ultimately show ?thesis by (auto simp:readys_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3041 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3042 |
moreover have "(node, Th th') \<in> (RAG s)^+" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3043 |
using h_b(1)[unfolded trancl_converse] eq_b by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3044 |
ultimately show ?thesis using that by metis |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3045 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3046 |
|
53
8142e80f5d58
Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents:
44
diff
changeset
|
3047 |
text {* \noindent |
114 | 3048 |
The following lemma says for any living thread, |
3049 |
either it is ready or there is a path in @{term RAG} |
|
3050 |
leading from it to a ready thread. The lemma is proved easily |
|
3051 |
by instantiating @{thm "chain_building"}. |
|
100 | 3052 |
*} |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3053 |
lemma th_chain_to_ready: |
63 | 3054 |
assumes th_in: "th \<in> threads 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:
32
diff
changeset
|
3055 |
shows "th \<in> readys s \<or> (\<exists> th'. th' \<in> readys s \<and> (Th th, Th th') \<in> (RAG s)^+)" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3056 |
proof(cases "th \<in> readys s") |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3057 |
case True |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3058 |
thus ?thesis by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3059 |
next |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3060 |
case False |
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:
32
diff
changeset
|
3061 |
from False and th_in have "Th th \<in> Domain (RAG s)" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3062 |
by (auto simp: readys_def s_waiting_def s_RAG_def wq_def waiting_raw_def |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3063 |
Domain_def) |
63 | 3064 |
from chain_building [rule_format, OF this] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3065 |
show ?thesis by auto |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3066 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3067 |
|
114 | 3068 |
text {* |
3069 |
The following lemma is a technical one to show |
|
3070 |
that the set of threads in the subtree of any thread |
|
3071 |
is finite. |
|
3072 |
*} |
|
101 | 3073 |
lemma finite_subtree_threads: |
3074 |
"finite {th'. Th th' \<in> subtree (RAG s) (Th th)}" (is "finite ?A") |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3075 |
proof - |
101 | 3076 |
have "?A = the_thread ` {Th th' | th' . Th th' \<in> subtree (RAG s) (Th th)}" |
3077 |
by (auto, insert image_iff, fastforce) |
|
3078 |
moreover have "finite {Th th' | th' . Th th' \<in> subtree (RAG s) (Th th)}" |
|
3079 |
(is "finite ?B") |
|
3080 |
proof - |
|
3081 |
have "?B = (subtree (RAG s) (Th th)) \<inter> {Th th' | th'. True}" |
|
3082 |
by auto |
|
3083 |
moreover have "... \<subseteq> (subtree (RAG s) (Th th))" by auto |
|
3084 |
moreover have "finite ..." by (simp add: fsbtRAGs.finite_subtree) |
|
3085 |
ultimately show ?thesis by auto |
|
3086 |
qed |
|
3087 |
ultimately show ?thesis by auto |
|
104 | 3088 |
qed |
3089 |
||
114 | 3090 |
text {* |
3091 |
The following two lemmas shows there is at most one running thread |
|
3092 |
in the system. |
|
3093 |
*} |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3094 |
lemma running_unique: |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3095 |
assumes running_1: "th1 \<in> running s" |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3096 |
and running_2: "th2 \<in> running s" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3097 |
shows "th1 = th2" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3098 |
proof - |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3099 |
from running_1 and running_2 have "cp s th1 = cp s th2" |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3100 |
unfolding running_def by auto |
101 | 3101 |
from this[unfolded cp_alt_def] |
3102 |
have eq_max: |
|
3103 |
"Max (the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th1)}) = |
|
3104 |
Max (the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th2)})" |
|
3105 |
(is "Max ?L = Max ?R") . |
|
3106 |
have "Max ?L \<in> ?L" |
|
3107 |
proof(rule Max_in) |
|
3108 |
show "finite ?L" by (simp add: finite_subtree_threads) |
|
3109 |
next |
|
3110 |
show "?L \<noteq> {}" using subtree_def by fastforce |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3111 |
qed |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3112 |
then obtain th1' where |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3113 |
h_1: "Th th1' \<in> subtree (RAG s) (Th th1)" "the_preced s th1' = Max ?L" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3114 |
by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3115 |
have "Max ?R \<in> ?R" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3116 |
proof(rule Max_in) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3117 |
show "finite ?R" by (simp add: finite_subtree_threads) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3118 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3119 |
show "?R \<noteq> {}" using subtree_def by fastforce |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3120 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3121 |
then obtain th2' where |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3122 |
h_2: "Th th2' \<in> subtree (RAG s) (Th th2)" "the_preced s th2' = Max ?R" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3123 |
by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3124 |
have "th1' = th2'" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3125 |
proof(rule preced_unique) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3126 |
from h_1(1) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3127 |
show "th1' \<in> threads s" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3128 |
proof(cases rule:subtreeE) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3129 |
case 1 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3130 |
hence "th1' = th1" by simp |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3131 |
with running_1 show ?thesis by (auto simp:running_def readys_def) |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3132 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3133 |
case 2 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3134 |
from this(2) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3135 |
have "(Th th1', Th th1) \<in> (RAG s)^+" by (auto simp:ancestors_def) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3136 |
from tranclD[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3137 |
have "(Th th1') \<in> Domain (RAG s)" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3138 |
from dm_RAG_threads[OF this] show ?thesis . |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3139 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3140 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3141 |
from h_2(1) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3142 |
show "th2' \<in> threads s" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3143 |
proof(cases rule:subtreeE) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3144 |
case 1 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3145 |
hence "th2' = th2" by simp |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3146 |
with running_2 show ?thesis by (auto simp:running_def readys_def) |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3147 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3148 |
case 2 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3149 |
from this(2) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3150 |
have "(Th th2', Th th2) \<in> (RAG s)^+" by (auto simp:ancestors_def) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3151 |
from tranclD[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3152 |
have "(Th th2') \<in> Domain (RAG s)" by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3153 |
from dm_RAG_threads[OF this] show ?thesis . |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3154 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3155 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3156 |
have "the_preced s th1' = the_preced s th2'" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3157 |
using eq_max h_1(2) h_2(2) by metis |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3158 |
thus "preced th1' s = preced th2' s" by (simp add:the_preced_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3159 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3160 |
from h_1(1)[unfolded this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3161 |
have star1: "(Th th2', Th th1) \<in> (RAG s)^*" by (auto simp:subtree_def) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3162 |
from h_2(1)[unfolded this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3163 |
have star2: "(Th th2', Th th2) \<in> (RAG s)^*" by (auto simp:subtree_def) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3164 |
from star_rpath[OF star1] obtain xs1 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3165 |
where rp1: "rpath (RAG s) (Th th2') xs1 (Th th1)" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3166 |
by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3167 |
from star_rpath[OF star2] obtain xs2 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3168 |
where rp2: "rpath (RAG s) (Th th2') xs2 (Th th2)" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3169 |
by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3170 |
from rp1 rp2 |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3171 |
show ?thesis |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3172 |
proof(cases) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3173 |
case (less_1 xs') |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3174 |
moreover have "xs' = []" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3175 |
proof(rule ccontr) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3176 |
assume otherwise: "xs' \<noteq> []" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3177 |
from rpath_plus[OF less_1(3) this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3178 |
have "(Th th1, Th th2) \<in> (RAG s)\<^sup>+" . |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3179 |
from tranclD[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3180 |
obtain cs where "waiting s th1 cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3181 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3182 |
with running_1 show False |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3183 |
by (unfold running_def readys_def, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3184 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3185 |
ultimately have "xs2 = xs1" by simp |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3186 |
from rpath_dest_eq[OF rp1 rp2[unfolded this]] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3187 |
show ?thesis by simp |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3188 |
next |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3189 |
case (less_2 xs') |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3190 |
moreover have "xs' = []" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3191 |
proof(rule ccontr) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3192 |
assume otherwise: "xs' \<noteq> []" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3193 |
from rpath_plus[OF less_2(3) this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3194 |
have "(Th th2, Th th1) \<in> (RAG s)\<^sup>+" . |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3195 |
from tranclD[OF this] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3196 |
obtain cs where "waiting s th2 cs" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3197 |
by (unfold s_RAG_def, fold waiting_eq, auto) |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3198 |
with running_2 show False |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3199 |
by (unfold running_def readys_def, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3200 |
qed |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3201 |
ultimately have "xs2 = xs1" by simp |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3202 |
from rpath_dest_eq[OF rp1 rp2[unfolded this]] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3203 |
show ?thesis by simp |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3204 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3205 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3206 |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3207 |
lemma card_running: "card (running s) \<le> 1" |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3208 |
proof(cases "running s = {}") |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3209 |
case True |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3210 |
thus ?thesis by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3211 |
next |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3212 |
case False |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3213 |
then obtain th where [simp]: "th \<in> running s" by auto |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3214 |
from running_unique[OF this] |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3215 |
have "running s = {th}" by auto |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3216 |
thus ?thesis by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
3217 |
qed |
63 | 3218 |
|
114 | 3219 |
text {* |
3220 |
The following two lemmas show that the set of living threads |
|
3221 |
in the system can be partitioned into subtrees of those |
|
3222 |
threads in the @{term readys} set. The first lemma |
|
3223 |
@{text threads_alt_def} shows the union of |
|
3224 |
these subtrees equals to the set of living threads |
|
3225 |
and the second lemma @{text "readys_subtree_disjoint"} shows |
|
3226 |
subtrees of different threads in @{term readys}-set |
|
3227 |
are disjoint. |
|
3228 |
*} |
|
3229 |
||
3230 |
lemma threads_alt_def: |
|
3231 |
"(threads s) = (\<Union> th \<in> readys s. {th'. Th th' \<in> subtree (RAG s) (Th th)})" |
|
3232 |
(is "?L = ?R") |
|
3233 |
proof - |
|
3234 |
{ fix th1 |
|
3235 |
assume "th1 \<in> ?L" |
|
3236 |
from th_chain_to_ready[OF this] |
|
3237 |
have "th1 \<in> readys s \<or> (\<exists>th'. th' \<in> readys s \<and> (Th th1, Th th') \<in> (RAG s)\<^sup>+)" . |
|
3238 |
hence "th1 \<in> ?R" by (auto simp:subtree_def) |
|
3239 |
} moreover |
|
3240 |
{ fix th' |
|
3241 |
assume "th' \<in> ?R" |
|
3242 |
then obtain th where h: "th \<in> readys s" " Th th' \<in> subtree (RAG s) (Th th)" |
|
3243 |
by auto |
|
3244 |
from this(2) |
|
3245 |
have "th' \<in> ?L" |
|
3246 |
proof(cases rule:subtreeE) |
|
3247 |
case 1 |
|
3248 |
with h(1) show ?thesis by (auto simp:readys_def) |
|
3249 |
next |
|
3250 |
case 2 |
|
3251 |
from tranclD[OF this(2)[unfolded ancestors_def, simplified]] |
|
3252 |
have "Th th' \<in> Domain (RAG s)" by auto |
|
3253 |
from dm_RAG_threads[OF this] |
|
3254 |
show ?thesis . |
|
3255 |
qed |
|
3256 |
} ultimately show ?thesis by auto |
|
3257 |
qed |
|
3258 |
||
3259 |
lemma readys_subtree_disjoint: |
|
3260 |
assumes "th1 \<in> readys s" |
|
3261 |
and "th2 \<in> readys s" |
|
3262 |
and "th1 \<noteq> th2" |
|
3263 |
shows "subtree (RAG s) (Th th1) \<inter> subtree (RAG s) (Th th2) = {}" |
|
3264 |
proof - |
|
3265 |
{ fix n |
|
3266 |
assume "n \<in> subtree (RAG s) (Th th1) \<inter> subtree (RAG s) (Th th2)" |
|
3267 |
hence "(n, Th th1) \<in> (RAG s)^*" "(n, Th th2) \<in> (RAG s)^*" |
|
3268 |
by (auto simp:subtree_def) |
|
3269 |
from star_rpath[OF this(1)] star_rpath[OF this(2)] |
|
3270 |
obtain xs1 xs2 where "rpath (RAG s) n xs1 (Th th1)" |
|
3271 |
"rpath (RAG s) n xs2 (Th th2)" by metis |
|
3272 |
hence False |
|
3273 |
proof(cases rule:rtree_RAG.rpath_overlap') |
|
3274 |
case (less_1 xs3) |
|
3275 |
from rpath_star[OF this(3)] |
|
3276 |
have "Th th1 \<in> subtree (RAG s) (Th th2)" |
|
3277 |
by (auto simp:subtree_def) |
|
3278 |
thus ?thesis |
|
3279 |
proof(cases rule:subtreeE) |
|
3280 |
case 1 |
|
3281 |
with assms(3) show ?thesis by auto |
|
3282 |
next |
|
3283 |
case 2 |
|
3284 |
hence "(Th th1, Th th2) \<in> (RAG s)^+" by (auto simp:ancestors_def) |
|
3285 |
from tranclD[OF this] |
|
3286 |
obtain z where "(Th th1, z) \<in> RAG s" by auto |
|
3287 |
from this[unfolded s_RAG_def, folded wq_def] |
|
3288 |
obtain cs' where "waiting s th1 cs'" |
|
3289 |
by (auto simp:waiting_eq) |
|
3290 |
with assms(1) show False by (auto simp:readys_def) |
|
3291 |
qed |
|
3292 |
next |
|
3293 |
case (less_2 xs3) |
|
3294 |
from rpath_star[OF this(3)] |
|
3295 |
have "Th th2 \<in> subtree (RAG s) (Th th1)" |
|
3296 |
by (auto simp:subtree_def) |
|
3297 |
thus ?thesis |
|
3298 |
proof(cases rule:subtreeE) |
|
3299 |
case 1 |
|
3300 |
with assms(3) show ?thesis by auto |
|
3301 |
next |
|
3302 |
case 2 |
|
3303 |
hence "(Th th2, Th th1) \<in> (RAG s)^+" by (auto simp:ancestors_def) |
|
3304 |
from tranclD[OF this] |
|
3305 |
obtain z where "(Th th2, z) \<in> RAG s" by auto |
|
3306 |
from this[unfolded s_RAG_def, folded wq_def] |
|
3307 |
obtain cs' where "waiting s th2 cs'" |
|
3308 |
by (auto simp:waiting_eq) |
|
3309 |
with assms(2) show False by (auto simp:readys_def) |
|
3310 |
qed |
|
3311 |
qed |
|
3312 |
} thus ?thesis by auto |
|
3313 |
qed |
|
3314 |
||
63 | 3315 |
end |
3316 |
||
101 | 3317 |
section {* Relating @{term cp} and @{term the_preced} and @{term preced} *} |
3318 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3319 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3320 |
@{term cp} of a thread is defined to be the maximum of |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3321 |
the @{term preced}-values (precedences) of all threads in |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3322 |
its subtree given by @{term RAG}. Therefore, there exits |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3323 |
a relationship between @{term cp} and @{term preced} (and |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3324 |
also its variation @{term "the_preced"}) to be explored, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3325 |
and this is the target of this section. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3326 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3327 |
|
101 | 3328 |
context valid_trace |
3329 |
begin |
|
3330 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3331 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3332 |
Since @{term cp} is the maximum of all @{term preced}s in its subtree, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3333 |
which includes itself, it is not difficult to show |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3334 |
that the one thread's precedence is less or equal to its |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3335 |
@{text cp}-value: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3336 |
*} |
114 | 3337 |
|
101 | 3338 |
lemma le_cp: |
3339 |
shows "preced th s \<le> cp s th" |
|
3340 |
proof(unfold cp_alt_def, rule Max_ge) |
|
3341 |
show "finite (the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)})" |
|
3342 |
by (simp add: finite_subtree_threads) |
|
3343 |
next |
|
3344 |
show "preced th s \<in> the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)}" |
|
3345 |
by (simp add: subtree_def the_preced_def) |
|
3346 |
qed |
|
3347 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3348 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3349 |
Since @{term cp} is the maximum precedence of its subtree, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3350 |
and the subtree is only a subset of the set of all threads, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3351 |
it can be shown that @{text cp} is less or equal to the maximum of |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3352 |
all threads: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3353 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3354 |
|
101 | 3355 |
lemma cp_le: |
3356 |
assumes th_in: "th \<in> threads s" |
|
3357 |
shows "cp s th \<le> Max (the_preced s ` threads s)" |
|
3358 |
proof(unfold cp_alt_def, rule Max_f_mono) |
|
3359 |
show "finite (threads s)" by (simp add: finite_threads) |
|
3360 |
next |
|
3361 |
show " {th'. Th th' \<in> subtree (RAG s) (Th th)} \<noteq> {}" |
|
3362 |
using subtree_def by fastforce |
|
3363 |
next |
|
3364 |
show "{th'. Th th' \<in> subtree (RAG s) (Th th)} \<subseteq> threads s" |
|
3365 |
using assms |
|
3366 |
by (smt Domain.DomainI dm_RAG_threads mem_Collect_eq |
|
3367 |
node.inject(1) rtranclD subsetI subtree_def trancl_domain) |
|
3368 |
qed |
|
3369 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3370 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3371 |
Since the @{term cp}-value of each individual thread is less or equal to the |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3372 |
maximum precedence value of all threads (shown in lemma @{thm cp_le}), |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3373 |
it is easy to derive further that maximum @{term "cp"}-value of |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3374 |
all threads is also less or equal to the latter. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3375 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3376 |
On the other hand, since the precedence value of each individual |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3377 |
thread is less of equal to its own @{term cp}-value (shown in lemma @{thm le_cp}), |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3378 |
it is easy to show that the maximum of the former is less or equal to the |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3379 |
maximum of the latter. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3380 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3381 |
By combining these two perspectives, we get the following equality |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3382 |
between the two maximums: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3383 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3384 |
|
101 | 3385 |
lemma max_cp_eq: |
3386 |
shows "Max ((cp s) ` threads s) = Max (the_preced s ` threads s)" |
|
3387 |
(is "?L = ?R") |
|
3388 |
proof - |
|
3389 |
have "?L \<le> ?R" |
|
3390 |
proof(cases "threads s = {}") |
|
3391 |
case False |
|
3392 |
show ?thesis |
|
3393 |
by (rule Max.boundedI, |
|
3394 |
insert cp_le, |
|
3395 |
auto simp:finite_threads False) |
|
3396 |
qed auto |
|
3397 |
moreover have "?R \<le> ?L" |
|
3398 |
by (rule Max_fg_mono, |
|
3399 |
simp add: finite_threads, |
|
3400 |
simp add: le_cp the_preced_def) |
|
3401 |
ultimately show ?thesis by auto |
|
3402 |
qed |
|
3403 |
||
114 | 3404 |
text {* (* ddd *) \noindent |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3405 |
According to @{thm threads_alt_def} and @{thm readys_subtree_disjoint} , |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3406 |
the set of @{term threads} can be partitioned into subtrees of the |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3407 |
threads in @{term readys}, and also because @{term cp}-value of a thread is |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3408 |
the maximum precedence of its own subtree, by applying |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3409 |
the absorbing property of @{term Max} (lemma @{thm Max_UNION}) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3410 |
over the union of subtrees, the following equation can be derived: |
103
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3411 |
*} |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3412 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3413 |
lemma max_cp_readys_max_preced: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3414 |
shows "Max (cp s ` readys s) = Max (the_preced s ` threads s)" (is "?L = ?R") |
103
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3415 |
proof(cases "readys s = {}") |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3416 |
case False |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3417 |
have "?R = |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3418 |
Max (the_preced s ` (\<Union>th\<in>readys s. {th'. Th th' \<in> subtree (RAG s) (Th th)}))" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3419 |
by (simp add: threads_alt_def) |
103
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3420 |
also have "... = |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3421 |
Max ((\<Union>th\<in>readys s. the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)}))" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3422 |
by (unfold image_UN, simp) |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3423 |
also have "... = |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3424 |
Max (Max ` (\<lambda>th. the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)}) ` readys s)" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3425 |
proof(rule Max_UNION) |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3426 |
show "\<forall>M\<in>(\<lambda>x. the_preced s ` |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3427 |
{th'. Th th' \<in> subtree (RAG s) (Th x)}) ` readys s. finite M" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3428 |
using finite_subtree_threads by auto |
109
4e59c0ce1511
wq_in_inv and wq_out_inv are removed, a number of loop holes need to be filled.
zhangx
parents:
108
diff
changeset
|
3429 |
qed (auto simp:False subtree_def finite_readys) |
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3430 |
also have "... = |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3431 |
Max ((Max \<circ> (\<lambda>th. the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)})) ` |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3432 |
readys s)" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3433 |
by (simp add: image_comp) |
103
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3434 |
also have "... = ?L" (is "Max (?f ` ?A) = Max (?g ` ?A)") |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3435 |
proof - |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3436 |
have "(?f ` ?A) = (?g ` ?A)" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3437 |
proof(rule f_image_eq) |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3438 |
fix th1 |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3439 |
assume "th1 \<in> ?A" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3440 |
thus "?f th1 = ?g th1" |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3441 |
by (unfold cp_alt_def, simp) |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3442 |
qed |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3443 |
thus ?thesis by simp |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3444 |
qed |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3445 |
finally show ?thesis by simp |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3446 |
qed (auto simp:threads_alt_def) |
d5e9653fbf19
PIPBasics.thy reorganized into sections. The structure is now stable. Next step is to put in more comments.
zhangx
parents:
102
diff
changeset
|
3447 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3448 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3449 |
The following lemma is simply a corollary of @{thm max_cp_readys_max_preced} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3450 |
and @{thm max_cp_eq}: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3451 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3452 |
lemma max_cp_readys_threads: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3453 |
shows "Max (cp s ` readys s) = Max (cp s ` threads s)" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3454 |
using max_cp_readys_max_preced max_cp_eq by auto |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3455 |
|
101 | 3456 |
end |
3457 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3458 |
|
101 | 3459 |
section {* Relating @{term cntP}, @{term cntV}, @{term cntCS} and @{term pvD} *} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3460 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3461 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3462 |
As explained in the section where @{term "cntP"}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3463 |
@{term "cntV"} and @{term "cntCS"} are defined, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3464 |
we need to establish a equation (in lemma @{text "cnp_cnv_cncs"}) |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3465 |
so that the last can be calculated out of the first two. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3466 |
|
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3467 |
While the calculation of @{term "cntV"} and @{term "cntCS"} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3468 |
are relatively simple, the calculation of @{term "cntCS"} and |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3469 |
@{term "pvD"} are complicated, because their definitions |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3470 |
involve a number of other functions such as @{term holdents}, @{term readys}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3471 |
and @{term threads}. To prove @{text "cnp_cnv_cncs"}, |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3472 |
we need to investigate how the values of these functions |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3473 |
are changed with the execution of each kind of system operation. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3474 |
Following conventions, such investigation are divided into |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3475 |
locales corresponding to system operations. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3476 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
3477 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3478 |
context valid_trace_p_w |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3479 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3480 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3481 |
lemma holding_s_holder: "holding s holder cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3482 |
by (unfold s_holding_def, fold wq_def, unfold wq_s_cs, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3483 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3484 |
lemma holding_es_holder: "holding (e#s) holder cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3485 |
by (unfold s_holding_def, fold wq_def, unfold wq_es_cs wq_s_cs, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3486 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3487 |
lemma holdents_es: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3488 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3489 |
proof - |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3490 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3491 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3492 |
hence h: "holding (e#s) th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3493 |
have "holding s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3494 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3495 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3496 |
from held_unique[OF h[unfolded True] holding_es_holder] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3497 |
have "th' = holder" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3498 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3499 |
by (unfold True holdents_def, insert holding_s_holder, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3500 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3501 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3502 |
hence "wq (e#s) cs' = wq s cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3503 |
from h[unfolded s_holding_def, folded wq_def, unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3504 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3505 |
by (unfold s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3506 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3507 |
hence "cs' \<in> ?R" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3508 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3509 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3510 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3511 |
hence h: "holding s th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3512 |
have "holding (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3513 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3514 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3515 |
from held_unique[OF h[unfolded True] holding_s_holder] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3516 |
have "th' = holder" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3517 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3518 |
by (unfold True holdents_def, insert holding_es_holder, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3519 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3520 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3521 |
hence "wq s cs' = wq (e#s) cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3522 |
from h[unfolded s_holding_def, folded wq_def, unfolded this] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3523 |
show ?thesis |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3524 |
by (unfold s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3525 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3526 |
hence "cs' \<in> ?L" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3527 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3528 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3529 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3530 |
lemma cntCS_es_th[simp]: "cntCS (e#s) th' = cntCS s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3531 |
by (unfold cntCS_def holdents_es, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3532 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3533 |
lemma th_not_ready_es: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3534 |
shows "th \<notin> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3535 |
using waiting_es_th_cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3536 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3537 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3538 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3539 |
|
100 | 3540 |
lemma (in valid_trace) finite_holdents: "finite (holdents s th)" |
3541 |
by (unfold holdents_alt_def, insert fsbtRAGs.finite_children, auto) |
|
3542 |
||
101 | 3543 |
context valid_trace_p |
3544 |
begin |
|
3545 |
||
3546 |
lemma live_th_es: "th \<in> threads (e#s)" |
|
3547 |
using live_th_s |
|
3548 |
by (unfold is_p, simp) |
|
3549 |
||
3550 |
lemma waiting_neq_th: |
|
3551 |
assumes "waiting s t c" |
|
3552 |
shows "t \<noteq> th" |
|
3553 |
using assms using th_not_waiting by blast |
|
3554 |
||
3555 |
end |
|
3556 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3557 |
context valid_trace_p_h |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3558 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3559 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3560 |
lemma th_not_waiting': |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3561 |
"\<not> waiting (e#s) th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3562 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3563 |
case True |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3564 |
show ?thesis |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3565 |
by (unfold True s_waiting_def, fold wq_def, unfold wq_es_cs', auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3566 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3567 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3568 |
from th_not_waiting[of cs', unfolded s_waiting_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3569 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3570 |
by (unfold s_waiting_def, fold wq_def, insert False, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3571 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3572 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3573 |
lemma ready_th_es: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3574 |
shows "th \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3575 |
using th_not_waiting' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3576 |
by (unfold readys_def, insert live_th_es, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3577 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3578 |
lemma holdents_es_th: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3579 |
"holdents (e#s) th = (holdents s th) \<union> {cs}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3580 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3581 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3582 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3583 |
hence "holding (e#s) th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3584 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3585 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3586 |
by (cases rule:holding_esE, auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3587 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3588 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3589 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3590 |
hence "holding s th cs' \<or> cs' = cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3591 |
by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3592 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3593 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3594 |
assume "holding s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3595 |
from holding_kept[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3596 |
show ?thesis by (auto simp:holdents_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3597 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3598 |
assume "cs' = cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3599 |
thus ?thesis using holding_es_th_cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3600 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3601 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3602 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3603 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3604 |
|
111 | 3605 |
lemma not_holding_s_th_cs: "\<not> holding s th cs" |
3606 |
proof |
|
3607 |
assume otherwise: "holding s th cs" |
|
3608 |
from pip_e[unfolded is_p] |
|
3609 |
show False |
|
3610 |
proof(cases) |
|
3611 |
case (thread_P) |
|
3612 |
moreover have "(Cs cs, Th th) \<in> RAG s" |
|
120
b3b8735c7c02
updated to Isabelle 2016
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
119
diff
changeset
|
3613 |
using otherwise th_not_in_wq |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3614 |
unfolding holding_raw_def holding_eq by auto |
111 | 3615 |
ultimately show ?thesis by auto |
3616 |
qed |
|
3617 |
qed |
|
3618 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3619 |
lemma cntCS_es_th: "cntCS (e#s) th = cntCS s th + 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3620 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3621 |
have "card (holdents s th \<union> {cs}) = card (holdents s th) + 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3622 |
proof(subst card_Un_disjoint) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3623 |
show "holdents s th \<inter> {cs} = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3624 |
using not_holding_s_th_cs by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3625 |
qed (auto simp:finite_holdents) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3626 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3627 |
by (unfold cntCS_def holdents_es_th, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3628 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3629 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3630 |
lemma no_holder: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3631 |
"\<not> holding s th' cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3632 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3633 |
assume otherwise: "holding s th' cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3634 |
from this[unfolded s_holding_def, folded wq_def, unfolded we] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3635 |
show False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3636 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3637 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3638 |
lemma holdents_es_th': |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3639 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3640 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3641 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3642 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3643 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3644 |
hence h_e: "holding (e#s) th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3645 |
have "cs' \<noteq> cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3646 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3647 |
assume "cs' = cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3648 |
from held_unique[OF h_e[unfolded this] holding_es_th_cs] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3649 |
have "th' = th" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3650 |
with assms show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3651 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3652 |
from h_e[unfolded s_holding_def, folded wq_def, unfolded wq_neq_simp[OF this]] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3653 |
have "th' \<in> set (wq s cs') \<and> th' = hd (wq s cs')" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3654 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3655 |
by (unfold holdents_def s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3656 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3657 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3658 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3659 |
hence "holding s th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3660 |
from holding_kept[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3661 |
have "holding (e # s) th' cs'" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3662 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3663 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3664 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3665 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3666 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3667 |
lemma cntCS_es_th'[simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3668 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3669 |
shows "cntCS (e#s) th' = cntCS s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3670 |
by (unfold cntCS_def holdents_es_th'[OF assms], simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3671 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3672 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3673 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3674 |
context valid_trace_p |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3675 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3676 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3677 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3678 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3679 |
and "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3680 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3681 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3682 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3683 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3684 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3685 |
using assms(2)[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3686 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3687 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3688 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3689 |
with n_wait wait |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3690 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3691 |
by (unfold s_waiting_def, fold wq_def, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3692 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3693 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3694 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3695 |
proof(cases "wq s cs = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3696 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3697 |
then interpret vt: valid_trace_p_h |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3698 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3699 |
show ?thesis using n_wait wait waiting_kept by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3700 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3701 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3702 |
then interpret vt: valid_trace_p_w by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3703 |
show ?thesis using n_wait wait waiting_kept by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3704 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3705 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3706 |
} with assms(2) show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3707 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3708 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3709 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3710 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3711 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3712 |
and "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3713 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3714 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3715 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3716 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3717 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3718 |
using assms(2)[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3719 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3720 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3721 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3722 |
with n_wait wait |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3723 |
show ?thesis |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3724 |
by (unfold s_waiting_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3725 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3726 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3727 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3728 |
proof(cases "wq s cs = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3729 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3730 |
then interpret vt: valid_trace_p_h |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3731 |
by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3732 |
show ?thesis using n_wait vt.waiting_esE wait by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3733 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3734 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3735 |
then interpret vt: valid_trace_p_w by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3736 |
show ?thesis using assms(1) n_wait vt.waiting_esE wait by auto |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3737 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3738 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3739 |
} with assms(2) show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3740 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3741 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3742 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3743 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3744 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3745 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3746 |
using readys_kept1[OF assms] readys_kept2[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3747 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3748 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3749 |
lemma cnp_cnv_cncs_kept: (* ddd *) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3750 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3751 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3752 |
proof(cases "th' = th") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3753 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3754 |
note eq_th' = this |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3755 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3756 |
proof(cases "wq s cs = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3757 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3758 |
then interpret vt: valid_trace_p_h by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3759 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3760 |
using assms eq_th' is_p ready_th_s vt.cntCS_es_th vt.ready_th_es pvD_def by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3761 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3762 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3763 |
then interpret vt: valid_trace_p_w by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3764 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3765 |
using add.commute add.left_commute assms eq_th' is_p live_th_s |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3766 |
ready_th_s vt.th_not_ready_es pvD_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3767 |
apply (auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3768 |
by (fold is_p, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3769 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3770 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3771 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3772 |
note h_False = False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3773 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3774 |
proof(cases "wq s cs = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3775 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3776 |
then interpret vt: valid_trace_p_h by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3777 |
show ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3778 |
by (insert True h_False pvD_def, auto split:if_splits,unfold is_p, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3779 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3780 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3781 |
then interpret vt: valid_trace_p_w by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3782 |
show ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3783 |
by (insert False h_False pvD_def, auto split:if_splits,unfold is_p, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3784 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3785 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3786 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3787 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3788 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3789 |
|
100 | 3790 |
context valid_trace_v |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3791 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3792 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3793 |
lemma holding_th_cs_s: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3794 |
"holding s th cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3795 |
by (unfold s_holding_def, fold wq_def, unfold wq_s_cs, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3796 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3797 |
lemma th_ready_s [simp]: "th \<in> readys s" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3798 |
using running_th_s |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3799 |
by (unfold running_def readys_def, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3800 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3801 |
lemma th_live_s [simp]: "th \<in> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3802 |
using th_ready_s by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3803 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3804 |
lemma th_ready_es [simp]: "th \<in> readys (e#s)" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3805 |
using running_th_s neq_t_th |
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3806 |
by (unfold is_v running_def readys_def, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3807 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3808 |
lemma th_live_es [simp]: "th \<in> threads (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3809 |
using th_ready_es by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3810 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3811 |
lemma pvD_th_s[simp]: "pvD s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3812 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3813 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3814 |
lemma pvD_th_es[simp]: "pvD (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3815 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3816 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3817 |
lemma cntCS_s_th [simp]: "cntCS s th > 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3818 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3819 |
have "cs \<in> holdents s th" using holding_th_cs_s |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3820 |
by (unfold holdents_def, simp) |
101 | 3821 |
moreover have "finite (holdents s th)" using finite_holdents |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3822 |
by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3823 |
ultimately show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3824 |
by (unfold cntCS_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3825 |
auto intro!:card_gt_0_iff[symmetric, THEN iffD1]) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3826 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3827 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3828 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3829 |
|
101 | 3830 |
context valid_trace_v |
3831 |
begin |
|
3832 |
||
3833 |
lemma th_not_waiting: |
|
3834 |
"\<not> waiting s th c" |
|
3835 |
proof - |
|
3836 |
have "th \<in> readys s" |
|
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
3837 |
using running_ready running_th_s by blast |
101 | 3838 |
thus ?thesis |
3839 |
by (unfold readys_def, auto) |
|
3840 |
qed |
|
3841 |
||
3842 |
lemma waiting_neq_th: |
|
3843 |
assumes "waiting s t c" |
|
3844 |
shows "t \<noteq> th" |
|
3845 |
using assms using th_not_waiting by blast |
|
3846 |
||
3847 |
end |
|
3848 |
||
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3849 |
context valid_trace_v_n |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3850 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3851 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3852 |
lemma not_ready_taker_s[simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3853 |
"taker \<notin> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3854 |
using waiting_taker |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3855 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3856 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3857 |
lemma taker_live_s [simp]: "taker \<in> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3858 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3859 |
have "taker \<in> set wq'" by (simp add: eq_wq') |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3860 |
from th'_in_inv[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3861 |
have "taker \<in> set rest" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3862 |
hence "taker \<in> set (wq s cs)" by (simp add: wq_s_cs) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3863 |
thus ?thesis using wq_threads by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3864 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3865 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3866 |
lemma taker_live_es [simp]: "taker \<in> threads (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3867 |
using taker_live_s threads_es by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3868 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3869 |
lemma taker_ready_es [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3870 |
shows "taker \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3871 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3872 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3873 |
assume "waiting (e#s) taker cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3874 |
hence False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3875 |
proof(cases rule:waiting_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3876 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3877 |
thus ?thesis using waiting_taker waiting_unique by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3878 |
qed simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3879 |
} thus ?thesis by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3880 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3881 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3882 |
lemma neq_taker_th: "taker \<noteq> th" |
101 | 3883 |
using th_not_waiting waiting_taker by blast |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3884 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3885 |
lemma not_holding_taker_s_cs: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3886 |
shows "\<not> holding s taker cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3887 |
using holding_cs_eq_th neq_taker_th by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3888 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3889 |
lemma holdents_es_taker: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3890 |
"holdents (e#s) taker = holdents s taker \<union> {cs}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3891 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3892 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3893 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3894 |
hence "holding (e#s) taker cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3895 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3896 |
proof(cases rule:holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3897 |
case 2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3898 |
thus ?thesis by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3899 |
qed auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3900 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3901 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3902 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3903 |
hence "holding s taker cs' \<or> cs' = cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3904 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3905 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3906 |
assume "holding s taker cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3907 |
hence "holding (e#s) taker cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3908 |
using holding_esI2 holding_taker by fastforce |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3909 |
thus ?thesis by (auto simp:holdents_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
3910 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3911 |
assume "cs' = cs" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3912 |
with holding_taker |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3913 |
show ?thesis by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3914 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3915 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3916 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3917 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3918 |
lemma cntCS_es_taker [simp]: "cntCS (e#s) taker = cntCS s taker + 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3919 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3920 |
have "card (holdents s taker \<union> {cs}) = card (holdents s taker) + 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3921 |
proof(subst card_Un_disjoint) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3922 |
show "holdents s taker \<inter> {cs} = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3923 |
using not_holding_taker_s_cs by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3924 |
qed (auto simp:finite_holdents) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3925 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3926 |
by (unfold cntCS_def, insert holdents_es_taker, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3927 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3928 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3929 |
lemma pvD_taker_s[simp]: "pvD s taker = 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3930 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3931 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3932 |
lemma pvD_taker_es[simp]: "pvD (e#s) taker = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3933 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3934 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3935 |
lemma pvD_th_s[simp]: "pvD s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3936 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3937 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3938 |
lemma pvD_th_es[simp]: "pvD (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3939 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3940 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3941 |
lemma holdents_es_th: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3942 |
"holdents (e#s) th = holdents s th - {cs}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3943 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3944 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3945 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3946 |
hence "holding (e#s) th cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3947 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3948 |
proof(cases rule:holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3949 |
case 2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3950 |
thus ?thesis by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3951 |
qed (insert neq_taker_th, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3952 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3953 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3954 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3955 |
hence "cs' \<noteq> cs" "holding s th cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3956 |
from holding_esI2[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3957 |
have "cs' \<in> ?L" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3958 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3959 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3960 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3961 |
lemma cntCS_es_th [simp]: "cntCS (e#s) th = cntCS s th - 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3962 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3963 |
have "card (holdents s th - {cs}) = card (holdents s th) - 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3964 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3965 |
have "cs \<in> holdents s th" using holding_th_cs_s |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3966 |
by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3967 |
moreover have "finite (holdents s th)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3968 |
by (simp add: finite_holdents) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3969 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3970 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3971 |
thus ?thesis by (unfold cntCS_def holdents_es_th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3972 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3973 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3974 |
lemma holdents_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3975 |
assumes "th' \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3976 |
and "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3977 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3978 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3979 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3980 |
assume h: "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3981 |
have "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3982 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3983 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3984 |
hence eq_wq: "wq (e#s) cs' = wq s cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3985 |
from h have "holding (e#s) th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3986 |
from this[unfolded s_holding_def, folded wq_def, unfolded eq_wq] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3987 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3988 |
by (unfold holdents_def s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3989 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3990 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3991 |
from h[unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3992 |
have "holding (e#s) th' cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3993 |
from held_unique[OF this holding_taker] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3994 |
have "th' = taker" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3995 |
with assms show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3996 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3997 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3998 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
3999 |
assume h: "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4000 |
have "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4001 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4002 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4003 |
hence eq_wq: "wq (e#s) cs' = wq s cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4004 |
from h have "holding s th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4005 |
from this[unfolded s_holding_def, folded wq_def, unfolded eq_wq] |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4006 |
show ?thesis |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4007 |
by (unfold holdents_def s_holding_def, fold wq_def, insert eq_wq, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4008 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4009 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4010 |
from h[unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4011 |
have "holding s th' cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4012 |
from held_unique[OF this holding_th_cs_s] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4013 |
have "th' = th" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4014 |
with assms show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4015 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4016 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4017 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4018 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4019 |
lemma cntCS_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4020 |
assumes "th' \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4021 |
and "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4022 |
shows "cntCS (e#s) th' = cntCS s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4023 |
by (unfold cntCS_def holdents_kept[OF assms], simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4024 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4025 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4026 |
assumes "th' \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4027 |
and "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4028 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4029 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4030 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4031 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4032 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4033 |
using assms(2)[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4034 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4035 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4036 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4037 |
with n_wait wait |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4038 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4039 |
by (unfold s_waiting_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4040 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4041 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4042 |
have "th' \<in> set (th # rest) \<and> th' \<noteq> hd (th # rest)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4043 |
using wait[unfolded True s_waiting_def, folded wq_def, unfolded wq_s_cs] . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4044 |
moreover have "\<not> (th' \<in> set rest \<and> th' \<noteq> hd (taker # rest'))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4045 |
using n_wait[unfolded True s_waiting_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4046 |
unfolded wq_es_cs set_wq', unfolded eq_wq'] . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4047 |
ultimately have "th' = taker" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4048 |
with assms(1) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4049 |
show ?thesis by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4050 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4051 |
} with assms(2) show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4052 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4053 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4054 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4055 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4056 |
assumes "th' \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4057 |
and "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4058 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4059 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4060 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4061 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4062 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4063 |
using assms(2)[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4064 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4065 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4066 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4067 |
with n_wait wait |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4068 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4069 |
by (unfold s_waiting_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4070 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4071 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4072 |
have "th' \<in> set rest \<and> th' \<noteq> hd (taker # rest')" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4073 |
using wait [unfolded True s_waiting_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4074 |
unfolded wq_es_cs set_wq', unfolded eq_wq'] . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4075 |
moreover have "\<not> (th' \<in> set (th # rest) \<and> th' \<noteq> hd (th # rest))" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4076 |
using n_wait[unfolded True s_waiting_def, folded wq_def, unfolded wq_s_cs] . |
111 | 4077 |
ultimately have "th' = taker" using th_not_in_rest by simp |
4078 |
thm taker_def wq'_def |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4079 |
with assms(1) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4080 |
show ?thesis by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4081 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4082 |
} with assms(2) show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4083 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4084 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4085 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4086 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4087 |
assumes "th' \<noteq> taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4088 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4089 |
using readys_kept1[OF assms] readys_kept2[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4090 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4091 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4092 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4093 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4094 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4095 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4096 |
{ assume eq_th': "th' = taker" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4097 |
have ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4098 |
apply (unfold eq_th' pvD_taker_es cntCS_es_taker) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4099 |
by (insert neq_taker_th assms[unfolded eq_th'], unfold is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4100 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4101 |
assume eq_th': "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4102 |
have ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4103 |
apply (unfold eq_th' pvD_th_es cntCS_es_th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4104 |
by (insert assms[unfolded eq_th'], unfold is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4105 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4106 |
assume h: "th' \<noteq> taker" "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4107 |
have ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4108 |
apply (unfold cntCS_kept[OF h], insert h, unfold is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4109 |
by (fold is_v, unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4110 |
} ultimately show ?thesis by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4111 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4112 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4113 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4114 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4115 |
context valid_trace_v_e |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4116 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4117 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4118 |
lemma holdents_es_th: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4119 |
"holdents (e#s) th = holdents s th - {cs}" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4120 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4121 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4122 |
assume "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4123 |
hence "holding (e#s) th cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4124 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4125 |
proof(cases rule:holding_esE) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4126 |
case 1 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4127 |
thus ?thesis by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4128 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4129 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4130 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4131 |
assume "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4132 |
hence "cs' \<noteq> cs" "holding s th cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4133 |
from holding_esI2[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4134 |
have "cs' \<in> ?L" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4135 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4136 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4137 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4138 |
lemma cntCS_es_th [simp]: "cntCS (e#s) th = cntCS s th - 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4139 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4140 |
have "card (holdents s th - {cs}) = card (holdents s th) - 1" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4141 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4142 |
have "cs \<in> holdents s th" using holding_th_cs_s |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4143 |
by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4144 |
moreover have "finite (holdents s th)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4145 |
by (simp add: finite_holdents) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4146 |
ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4147 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4148 |
thus ?thesis by (unfold cntCS_def holdents_es_th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4149 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4150 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4151 |
lemma holdents_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4152 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4153 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4154 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4155 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4156 |
assume h: "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4157 |
have "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4158 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4159 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4160 |
hence eq_wq: "wq (e#s) cs' = wq s cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4161 |
from h have "holding (e#s) th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4162 |
from this[unfolded s_holding_def, folded wq_def, unfolded eq_wq] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4163 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4164 |
by (unfold holdents_def s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4165 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4166 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4167 |
from h[unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4168 |
have "holding (e#s) th' cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4169 |
from this[unfolded s_holding_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4170 |
unfolded wq_es_cs nil_wq'] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4171 |
show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4172 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4173 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4174 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4175 |
assume h: "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4176 |
have "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4177 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4178 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4179 |
hence eq_wq: "wq (e#s) cs' = wq s cs'" by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4180 |
from h have "holding s th' cs'" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4181 |
from this[unfolded s_holding_def, folded wq_def, unfolded eq_wq] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4182 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4183 |
by (unfold holdents_def s_holding_def, fold wq_def, insert eq_wq, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4184 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4185 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4186 |
from h[unfolded this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4187 |
have "holding s th' cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4188 |
from held_unique[OF this holding_th_cs_s] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4189 |
have "th' = th" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4190 |
with assms show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4191 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4192 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4193 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4194 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4195 |
lemma cntCS_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4196 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4197 |
shows "cntCS (e#s) th' = cntCS s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4198 |
by (unfold cntCS_def holdents_kept[OF assms], simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4199 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4200 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4201 |
assumes "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4202 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4203 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4204 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4205 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4206 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4207 |
using assms(1)[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4208 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4209 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4210 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4211 |
with n_wait wait |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4212 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4213 |
by (unfold s_waiting_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4214 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4215 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4216 |
have "th' \<in> set (th # rest) \<and> th' \<noteq> hd (th # rest)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4217 |
using wait[unfolded True s_waiting_def, folded wq_def, unfolded wq_s_cs] . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4218 |
hence "th' \<in> set rest" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4219 |
with set_wq' have "th' \<in> set wq'" by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4220 |
with nil_wq' show ?thesis by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4221 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4222 |
} thus ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4223 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4224 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4225 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4226 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4227 |
assumes "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4228 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4229 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4230 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4231 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4232 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4233 |
using assms[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4234 |
have False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4235 |
proof(cases "cs' = cs") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4236 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4237 |
with n_wait wait |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4238 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4239 |
by (unfold s_waiting_def, fold wq_def, auto) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4240 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4241 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4242 |
have "th' \<in> set [] \<and> th' \<noteq> hd []" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4243 |
using wait[unfolded True s_waiting_def, folded wq_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4244 |
unfolded wq_es_cs nil_wq'] . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4245 |
thus ?thesis by simp |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4246 |
qed |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4247 |
} with assms show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4248 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4249 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4250 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4251 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4252 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4253 |
using readys_kept1[OF assms] readys_kept2[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4254 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4255 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4256 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4257 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4258 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4259 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4260 |
{ |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4261 |
assume eq_th': "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4262 |
have ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4263 |
apply (unfold eq_th' pvD_th_es cntCS_es_th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4264 |
by (insert assms[unfolded eq_th'], unfold is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4265 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4266 |
assume h: "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4267 |
have ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4268 |
apply (unfold cntCS_kept[OF h], insert h, unfold is_v, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4269 |
by (fold is_v, unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4270 |
} ultimately show ?thesis by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4271 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4272 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4273 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4274 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4275 |
context valid_trace_v |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4276 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4277 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4278 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4279 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4280 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4281 |
proof(cases "rest = []") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4282 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4283 |
then interpret vt: valid_trace_v_e by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4284 |
show ?thesis using assms using vt.cnp_cnv_cncs_kept by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4285 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4286 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4287 |
then interpret vt: valid_trace_v_n by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4288 |
show ?thesis using assms using vt.cnp_cnv_cncs_kept by blast |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4289 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4290 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4291 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4292 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4293 |
context valid_trace_create |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4294 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4295 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4296 |
lemma th_not_live_s [simp]: "th \<notin> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4297 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4298 |
from pip_e[unfolded is_create] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4299 |
show ?thesis by (cases, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4300 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4301 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4302 |
lemma th_not_ready_s [simp]: "th \<notin> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4303 |
using th_not_live_s by (unfold readys_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4304 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4305 |
lemma th_live_es [simp]: "th \<in> threads (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4306 |
by (unfold is_create, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4307 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4308 |
lemma not_waiting_th_s [simp]: "\<not> waiting s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4309 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4310 |
assume "waiting s th cs'" |
99 | 4311 |
from this[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4312 |
have "th \<in> set (wq s cs')" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4313 |
from wq_threads[OF this] have "th \<in> threads s" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4314 |
with th_not_live_s show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4315 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4316 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4317 |
lemma not_holding_th_s [simp]: "\<not> holding s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4318 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4319 |
assume "holding s th cs'" |
99 | 4320 |
from this[unfolded s_holding_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4321 |
have "th \<in> set (wq s cs')" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4322 |
from wq_threads[OF this] have "th \<in> threads s" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4323 |
with th_not_live_s show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4324 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4325 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4326 |
lemma not_waiting_th_es [simp]: "\<not> waiting (e#s) th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4327 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4328 |
assume "waiting (e # s) th cs'" |
99 | 4329 |
from this[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4330 |
have "th \<in> set (wq s cs')" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4331 |
from wq_threads[OF this] have "th \<in> threads s" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4332 |
with th_not_live_s show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4333 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4334 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4335 |
lemma not_holding_th_es [simp]: "\<not> holding (e#s) th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4336 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4337 |
assume "holding (e # s) th cs'" |
99 | 4338 |
from this[unfolded s_holding_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4339 |
have "th \<in> set (wq s cs')" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4340 |
from wq_threads[OF this] have "th \<in> threads s" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4341 |
with th_not_live_s show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4342 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4343 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4344 |
lemma ready_th_es [simp]: "th \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4345 |
by (simp add:readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4346 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4347 |
lemma holdents_th_s: "holdents s th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4348 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4349 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4350 |
lemma holdents_th_es: "holdents (e#s) th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4351 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4352 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4353 |
lemma cntCS_th_s [simp]: "cntCS s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4354 |
by (unfold cntCS_def, simp add:holdents_th_s) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4355 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4356 |
lemma cntCS_th_es [simp]: "cntCS (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4357 |
by (unfold cntCS_def, simp add:holdents_th_es) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4358 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4359 |
lemma pvD_th_s [simp]: "pvD s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4360 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4361 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4362 |
lemma pvD_th_es [simp]: "pvD (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4363 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4364 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4365 |
lemma holdents_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4366 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4367 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4368 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4369 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4370 |
assume h: "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4371 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4372 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4373 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4374 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4375 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4376 |
assume h: "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4377 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4378 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4379 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4380 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4381 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4382 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4383 |
lemma cntCS_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4384 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4385 |
shows "cntCS (e#s) th' = cntCS s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4386 |
using holdents_kept[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4387 |
by (unfold cntCS_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4388 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4389 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4390 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4391 |
and "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4392 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4393 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4394 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4395 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4396 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4397 |
using assms by (auto simp:readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4398 |
from wait[unfolded s_waiting_def, folded wq_def] |
99 | 4399 |
n_wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4400 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4401 |
} thus ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4402 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4403 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4404 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4405 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4406 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4407 |
and "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4408 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4409 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4410 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4411 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4412 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4413 |
using assms(2) by (auto simp:readys_def) |
99 | 4414 |
from wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4415 |
n_wait[unfolded s_waiting_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4416 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4417 |
} with assms show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4418 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4419 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4420 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4421 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4422 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4423 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4424 |
using readys_kept1[OF assms] readys_kept2[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4425 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4426 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4427 |
lemma pvD_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4428 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4429 |
shows "pvD (e#s) th' = pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4430 |
using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4431 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4432 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4433 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4434 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4435 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4436 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4437 |
{ |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4438 |
assume eq_th': "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4439 |
have ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4440 |
by (unfold eq_th', simp, unfold is_create, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4441 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4442 |
assume h: "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4443 |
hence ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4444 |
by (simp, simp add:is_create) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4445 |
} ultimately show ?thesis by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4446 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4447 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4448 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4449 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4450 |
context valid_trace_exit |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4451 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4452 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4453 |
lemma th_live_s [simp]: "th \<in> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4454 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4455 |
from pip_e[unfolded is_exit] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4456 |
show ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
4457 |
by (cases, unfold running_def readys_def, simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4458 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4459 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4460 |
lemma th_ready_s [simp]: "th \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4461 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4462 |
from pip_e[unfolded is_exit] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4463 |
show ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
4464 |
by (cases, unfold running_def, simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4465 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4466 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4467 |
lemma th_not_live_es [simp]: "th \<notin> threads (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4468 |
by (unfold is_exit, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4469 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4470 |
lemma not_holding_th_s [simp]: "\<not> holding s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4471 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4472 |
from pip_e[unfolded is_exit] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4473 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4474 |
by (cases, unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4475 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4476 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4477 |
lemma cntCS_th_s [simp]: "cntCS s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4478 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4479 |
from pip_e[unfolded is_exit] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4480 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4481 |
by (cases, unfold cntCS_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4482 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4483 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4484 |
lemma not_holding_th_es [simp]: "\<not> holding (e#s) th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4485 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4486 |
assume "holding (e # s) th cs'" |
99 | 4487 |
from this[unfolded s_holding_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4488 |
have "holding s th cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4489 |
by (unfold s_holding_def, fold wq_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4490 |
with not_holding_th_s |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4491 |
show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4492 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4493 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4494 |
lemma ready_th_es [simp]: "th \<notin> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4495 |
by (simp add:readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4496 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4497 |
lemma holdents_th_s: "holdents s th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4498 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4499 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4500 |
lemma holdents_th_es: "holdents (e#s) th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4501 |
by (unfold holdents_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4502 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4503 |
lemma cntCS_th_es [simp]: "cntCS (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4504 |
by (unfold cntCS_def, simp add:holdents_th_es) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4505 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4506 |
lemma pvD_th_s [simp]: "pvD s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4507 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4508 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4509 |
lemma pvD_th_es [simp]: "pvD (e#s) th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4510 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4511 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4512 |
lemma holdents_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4513 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4514 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4515 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4516 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4517 |
assume h: "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4518 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4519 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4520 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4521 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4522 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4523 |
assume h: "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4524 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4525 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4526 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4527 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4528 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4529 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4530 |
lemma cntCS_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4531 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4532 |
shows "cntCS (e#s) th' = cntCS s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4533 |
using holdents_kept[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4534 |
by (unfold cntCS_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4535 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4536 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4537 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4538 |
and "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4539 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4540 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4541 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4542 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4543 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4544 |
using assms by (auto simp:readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4545 |
from wait[unfolded s_waiting_def, folded wq_def] |
99 | 4546 |
n_wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4547 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4548 |
} thus ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4549 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4550 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4551 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4552 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4553 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4554 |
and "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4555 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4556 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4557 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4558 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4559 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4560 |
using assms(2) by (auto simp:readys_def) |
99 | 4561 |
from wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4562 |
n_wait[unfolded s_waiting_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4563 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4564 |
} with assms show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4565 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4566 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4567 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4568 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4569 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4570 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4571 |
using readys_kept1[OF assms] readys_kept2[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4572 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4573 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4574 |
lemma pvD_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4575 |
assumes "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4576 |
shows "pvD (e#s) th' = pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4577 |
using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4578 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4579 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4580 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4581 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4582 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4583 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4584 |
{ |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4585 |
assume eq_th': "th' = th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4586 |
have ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4587 |
by (unfold eq_th', simp, unfold is_exit, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4588 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4589 |
assume h: "th' \<noteq> th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4590 |
hence ?thesis using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4591 |
by (simp, simp add:is_exit) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4592 |
} ultimately show ?thesis by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4593 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4594 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4595 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4596 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4597 |
context valid_trace_set |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4598 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4599 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4600 |
lemma th_live_s [simp]: "th \<in> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4601 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4602 |
from pip_e[unfolded is_set] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4603 |
show ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
4604 |
by (cases, unfold running_def readys_def, simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4605 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4606 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4607 |
lemma th_ready_s [simp]: "th \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4608 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4609 |
from pip_e[unfolded is_set] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4610 |
show ?thesis |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
4611 |
by (cases, unfold running_def, simp) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4612 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4613 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4614 |
lemma th_not_live_es [simp]: "th \<in> threads (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4615 |
by (unfold is_set, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4616 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4617 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4618 |
lemma holdents_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4619 |
shows "holdents (e#s) th' = holdents s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4620 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4621 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4622 |
assume h: "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4623 |
hence "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4624 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4625 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4626 |
} moreover { |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4627 |
fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4628 |
assume h: "cs' \<in> ?R" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4629 |
hence "cs' \<in> ?L" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4630 |
by (unfold holdents_def s_holding_def, fold wq_def, |
99 | 4631 |
unfold wq_kept, auto) |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4632 |
} ultimately show ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4633 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4634 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4635 |
lemma cntCS_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4636 |
shows "cntCS (e#s) th' = cntCS s th'" (is "?L = ?R") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4637 |
using holdents_kept |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4638 |
by (unfold cntCS_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4639 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4640 |
lemma readys_kept1: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4641 |
assumes "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4642 |
shows "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4643 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4644 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4645 |
assume wait: "waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4646 |
have n_wait: "\<not> waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4647 |
using assms by (auto simp:readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4648 |
from wait[unfolded s_waiting_def, folded wq_def] |
99 | 4649 |
n_wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4650 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4651 |
} moreover have "th' \<in> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4652 |
using assms[unfolded readys_def] by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4653 |
ultimately show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4654 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4655 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4656 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4657 |
lemma readys_kept2: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4658 |
assumes "th' \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4659 |
shows "th' \<in> readys (e#s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4660 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4661 |
{ fix cs' |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4662 |
assume wait: "waiting (e#s) th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4663 |
have n_wait: "\<not> waiting s th' cs'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4664 |
using assms by (auto simp:readys_def) |
99 | 4665 |
from wait[unfolded s_waiting_def, folded wq_def, unfolded wq_kept] |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4666 |
n_wait[unfolded s_waiting_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4667 |
have False by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4668 |
} with assms show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4669 |
by (unfold readys_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4670 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4671 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4672 |
lemma readys_simp [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4673 |
shows "(th' \<in> readys (e#s)) = (th' \<in> readys s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4674 |
using readys_kept1 readys_kept2 |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4675 |
by metis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4676 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4677 |
lemma pvD_kept [simp]: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4678 |
shows "pvD (e#s) th' = pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4679 |
by (unfold pvD_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4680 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4681 |
lemma cnp_cnv_cncs_kept: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4682 |
assumes "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4683 |
shows "cntP (e#s) th' = cntV (e#s) th' + cntCS (e#s) th' + pvD (e#s) th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4684 |
using assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4685 |
by (unfold is_set, simp, fold is_set, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4686 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4687 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4688 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4689 |
context valid_trace |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4690 |
begin |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4691 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4692 |
lemma cnp_cnv_cncs: "cntP s th' = cntV s th' + cntCS s th' + pvD s th'" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4693 |
proof(induct rule:ind) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4694 |
case Nil |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4695 |
thus ?case |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4696 |
by (unfold cntP_def cntV_def pvD_def cntCS_def holdents_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4697 |
s_holding_def, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4698 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4699 |
case (Cons s e) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4700 |
interpret vt_e: valid_trace_e s e using Cons by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4701 |
show ?case |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4702 |
proof(cases e) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4703 |
case (Create th prio) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4704 |
interpret vt_create: valid_trace_create s e th prio |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4705 |
using Create by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4706 |
show ?thesis using Cons by (simp add: vt_create.cnp_cnv_cncs_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4707 |
next |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4708 |
case (Exit th) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4709 |
interpret vt_exit: valid_trace_exit s e th |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4710 |
using Exit by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4711 |
show ?thesis using Cons by (simp add: vt_exit.cnp_cnv_cncs_kept) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4712 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4713 |
case (P th cs) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4714 |
interpret vt_p: valid_trace_p s e th cs using P by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4715 |
show ?thesis using Cons by (simp add: vt_p.cnp_cnv_cncs_kept) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4716 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4717 |
case (V th cs) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4718 |
interpret vt_v: valid_trace_v s e th cs using V by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4719 |
show ?thesis using Cons by (simp add: vt_v.cnp_cnv_cncs_kept) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4720 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4721 |
case (Set th prio) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4722 |
interpret vt_set: valid_trace_set s e th prio |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4723 |
using Set by (unfold_locales, simp) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4724 |
show ?thesis using Cons by (simp add: vt_set.cnp_cnv_cncs_kept) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4725 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4726 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4727 |
|
101 | 4728 |
end |
4729 |
||
4730 |
section {* Corollaries of @{thm valid_trace.cnp_cnv_cncs} *} |
|
4731 |
||
4732 |
context valid_trace |
|
4733 |
begin |
|
4734 |
||
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4735 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4736 |
The following two lemmas are purely technical, which says |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4737 |
a non-living thread can not hold any resource. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4738 |
*} |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4739 |
lemma not_thread_holdents: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4740 |
assumes not_in: "th \<notin> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4741 |
shows "holdents s th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4742 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4743 |
{ fix cs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4744 |
assume "cs \<in> holdents s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4745 |
hence "holding s th cs" by (auto simp:holdents_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4746 |
from this[unfolded s_holding_def, folded wq_def] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4747 |
have "th \<in> set (wq s cs)" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4748 |
with wq_threads have "th \<in> threads s" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4749 |
with assms |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4750 |
have False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4751 |
} thus ?thesis by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4752 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4753 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4754 |
lemma not_thread_cncs: |
63 | 4755 |
assumes not_in: "th \<notin> threads s" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4756 |
shows "cntCS s th = 0" |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4757 |
using not_thread_holdents[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4758 |
by (simp add:cntCS_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4759 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4760 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4761 |
Starting from the following @{text cnp_cnv_eq}, all |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4762 |
lemmas in this section concern the meaning of |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4763 |
condition @{prop "cntP s th = cntV s th"}, i.e. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4764 |
when the numbers of resource requesting and resource releasing |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4765 |
are equal. |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4766 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4767 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4768 |
lemma cnp_cnv_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4769 |
assumes "th \<notin> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4770 |
shows "cntP s th = cntV s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4771 |
using assms cnp_cnv_cncs not_thread_cncs pvD_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4772 |
by (auto) |
63 | 4773 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4774 |
lemma eq_pv_children: |
63 | 4775 |
assumes eq_pv: "cntP s th = cntV s th" |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4776 |
shows "children (RAG s) (Th th) = {}" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4777 |
proof - |
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4778 |
from cnp_cnv_cncs and eq_pv |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4779 |
have "cntCS s th = 0" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4780 |
by (auto split:if_splits) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4781 |
from this[unfolded cntCS_def holdents_alt_def] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4782 |
have card_0: "card (the_cs ` children (RAG s) (Th th)) = 0" . |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4783 |
have "finite (the_cs ` children (RAG s) (Th th))" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4784 |
by (simp add: fsbtRAGs.finite_children) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4785 |
from card_0[unfolded card_0_eq[OF this]] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4786 |
show ?thesis by auto |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4787 |
qed |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4788 |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4789 |
lemma eq_pv_holdents: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4790 |
assumes eq_pv: "cntP s th = cntV s th" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4791 |
shows "holdents s th = {}" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4792 |
by (unfold holdents_alt_def eq_pv_children[OF assms], simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4793 |
|
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4794 |
lemma eq_pv_subtree: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4795 |
assumes eq_pv: "cntP s th = cntV s th" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4796 |
shows "subtree (RAG s) (Th th) = {Th th}" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4797 |
using eq_pv_children[OF assms] |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4798 |
by (unfold subtree_children, simp) |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4799 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4800 |
lemma count_eq_RAG_plus: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4801 |
assumes "cntP s th = cntV s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4802 |
shows "{th'. (Th th', Th th) \<in> (RAG s)^+} = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4803 |
proof(rule ccontr) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4804 |
assume otherwise: "{th'. (Th th', Th th) \<in> (RAG s)\<^sup>+} \<noteq> {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4805 |
then obtain th' where "(Th th', Th th) \<in> (RAG s)^+" by auto |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4806 |
from tranclD2[OF this] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4807 |
obtain z where "z \<in> children (RAG s) (Th th)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4808 |
by (auto simp:children_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4809 |
with eq_pv_children[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4810 |
show False by simp |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4811 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4812 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4813 |
lemma count_eq_RAG_plus_Th: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4814 |
assumes "cntP s th = cntV s th" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4815 |
shows "{Th th' | th'. (Th th', Th th) \<in> (RAG s)^+} = {}" |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4816 |
using count_eq_RAG_plus[OF assms] by auto |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4817 |
|
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4818 |
lemma eq_pv_dependants: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4819 |
assumes eq_pv: "cntP s th = cntV s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4820 |
shows "dependants s th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4821 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4822 |
from count_eq_RAG_plus[OF assms, folded dependants_alt_def1] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4823 |
show ?thesis . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4824 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4825 |
|
106
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4826 |
lemma count_eq_tRAG_plus: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4827 |
assumes "cntP s th = cntV s th" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4828 |
shows "{th'. (Th th', Th th) \<in> (tRAG s)^+} = {}" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4829 |
using assms eq_pv_dependants dependants_alt_def eq_dependants by auto |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4830 |
|
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4831 |
lemma count_eq_tRAG_plus_Th: |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4832 |
assumes "cntP s th = cntV s th" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4833 |
shows "{Th th' | th'. (Th th', Th th) \<in> (tRAG s)^+} = {}" |
5454387e42ce
updated files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
104
diff
changeset
|
4834 |
using count_eq_tRAG_plus[OF assms] by auto |
63 | 4835 |
|
4836 |
end |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4837 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4838 |
subsection {* A notion @{text detached} and its relation with @{term cntP} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4839 |
and @{term cntV} *} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4840 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4841 |
definition detached :: "state \<Rightarrow> thread \<Rightarrow> bool" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4842 |
where "detached s th \<equiv> (\<not>(\<exists> cs. holding s th cs)) \<and> (\<not>(\<exists>cs. waiting s th cs))" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4843 |
|
115
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4844 |
text {* |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4845 |
The following lemma shows that a thread is detached means |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4846 |
it is isolated from @{term RAG}: |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4847 |
*} |
74fc1eae4605
Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents:
114
diff
changeset
|
4848 |
|
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4849 |
lemma detached_test: |
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:
32
diff
changeset
|
4850 |
shows "detached s th = (Th th \<notin> Field (RAG s))" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4851 |
apply(simp add: detached_def Field_def) |
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:
32
diff
changeset
|
4852 |
apply(simp add: s_RAG_def) |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4853 |
apply(simp add: s_holding_abv s_waiting_abv) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4854 |
apply(simp add: Domain_iff Range_iff) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4855 |
apply(simp add: wq_def) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4856 |
apply(auto) |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4857 |
done |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4858 |
|
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4859 |
lemma detached_cp_the_preced: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4860 |
assumes "detached s th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4861 |
shows "cp s th = the_preced s th" (is "?L = ?R") |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4862 |
proof - |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4863 |
have "?L = Max (the_preced s ` {th'. Th th' \<in> subtree (RAG s) (Th th)})" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4864 |
by (unfold cp_alt_def, simp) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4865 |
moreover have "{th'. Th th' \<in> subtree (RAG s) (Th th)} = {th}" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4866 |
proof - |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4867 |
{ fix n |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4868 |
assume "n \<in> subtree (RAG s) (Th th)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4869 |
hence "n = Th th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4870 |
proof(cases rule:subtreeE) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4871 |
case 2 |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4872 |
from 2(2) have "Th th \<in> Range (RAG s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4873 |
by (elim ancestors_Field, simp) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4874 |
moreover from assms[unfolded detached_test] have "Th th \<notin> Field (RAG s)" . |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4875 |
ultimately have False by (auto simp:Field_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4876 |
thus ?thesis by simp |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4877 |
qed simp |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4878 |
} thus ?thesis by auto |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4879 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4880 |
ultimately show ?thesis by auto |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4881 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4882 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4883 |
lemma detached_cp_preced: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4884 |
assumes "detached s th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4885 |
shows "cp s th = preced th s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4886 |
using detached_cp_the_preced[OF assms] |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4887 |
by (simp add:the_preced_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
4888 |
|
63 | 4889 |
context valid_trace |
4890 |
begin |
|
4891 |
||
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4892 |
lemma detached_intro: |
63 | 4893 |
assumes eq_pv: "cntP s th = cntV s th" |
0
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4894 |
shows "detached s th" |
110247f9d47e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
4895 |
proof - |
92
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4896 |
from eq_pv cnp_cnv_cncs |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4897 |
have "th \<in> readys s \<or> th \<notin> threads s" by (auto simp:pvD_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4898 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4899 |
proof |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4900 |
assume "th \<notin> threads s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4901 |
with rg_RAG_threads dm_RAG_threads |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4902 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4903 |
by (auto simp add: detached_def s_RAG_def s_waiting_abv |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4904 |
s_holding_abv wq_def Domain_iff Range_iff) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4905 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4906 |
assume "th \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4907 |
moreover have "Th th \<notin> Range (RAG s)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4908 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4909 |
from eq_pv_children[OF assms] |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4910 |
have "children (RAG s) (Th th) = {}" . |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4911 |
thus ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4912 |
by (unfold children_def, auto) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4913 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4914 |
ultimately show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4915 |
by (auto simp add: detached_def s_RAG_def s_waiting_abv |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4916 |
s_holding_abv wq_def readys_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4917 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4918 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4919 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4920 |
lemma detached_elim: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4921 |
assumes dtc: "detached s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4922 |
shows "cntP s th = cntV s th" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4923 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4924 |
have cncs_z: "cntCS s th = 0" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4925 |
proof - |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4926 |
from dtc have "holdents s th = {}" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4927 |
unfolding detached_def holdents_test s_RAG_def |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4928 |
by (simp add: s_waiting_abv wq_def s_holding_abv Domain_iff Range_iff) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4929 |
thus ?thesis by (auto simp:cntCS_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4930 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4931 |
show ?thesis |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4932 |
proof(cases "th \<in> threads s") |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4933 |
case True |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4934 |
with dtc |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4935 |
have "th \<in> readys s" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4936 |
by (unfold readys_def detached_def Field_def Domain_def Range_def, |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4937 |
auto simp:waiting_eq s_RAG_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4938 |
with cncs_z show ?thesis using cnp_cnv_cncs by (simp add:pvD_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4939 |
next |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4940 |
case False |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4941 |
with cncs_z and cnp_cnv_cncs show ?thesis by (simp add:pvD_def) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4942 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4943 |
qed |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4944 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4945 |
lemma detached_eq: |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4946 |
shows "(detached s th) = (cntP s th = cntV s th)" |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4947 |
by (insert vt, auto intro:detached_intro detached_elim) |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4948 |
|
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4949 |
end |
4763aa246dbd
Original files overwrite by their parallels (Correctness.thy v.s. PrioG.thy, PIPBasics.thy v.s. CpsG.thy, Implementation v.s. ExtGG.thy).
zhangx
parents:
90
diff
changeset
|
4950 |
|
116 | 4951 |
section {* Recursive calculation of @{term "cp"} *} |
4952 |
||
4953 |
text {* |
|
4954 |
According to the normal definitions, such as @{thm cp_def}, @{thm cp_alt_def} |
|
4955 |
and @{thm cp_alt_def1}, the @{term cp}-value of a thread depends |
|
4956 |
on the @{term preced}-values of all threads in its subtree. To calculate |
|
4957 |
a @{term cp}-value, one needs to traverse a whole subtree. |
|
4958 |
||
4959 |
However, in this section, we are going to show that @{term cp}-value |
|
4960 |
can be calculate locally (given by the lemma @{text "cp_rec"} in the following). |
|
4961 |
According to this lemma, the @{term cp}-value of a thread can be calculated only from |
|
4962 |
the @{term cp}-values of its children in @{term RAG}. |
|
4963 |
Therefore, if the @{term cp}-values of one thread's children are not |
|
4964 |
changed by an execution step, there is no need to recalculate. This |
|
4965 |
is particularly useful to in Implementation.thy to speed up the |
|
4966 |
recalculation of @{term cp}-values. |
|
4967 |
*} |
|
4968 |
||
4969 |
text {* |
|
4970 |
The following function @{text "cp_gen"} is a generalization |
|
4971 |
of @{term cp}. Unlike @{term cp} which returns a precedence |
|
4972 |
for a thread, @{text "cp_gen"} returns precedence for a node |
|
4973 |
in @{term RAG}. When the node represent a thread, @{text cp_gen} is |
|
4974 |
coincident with @{term cp} (to be shown in lemma @{text "cp_gen_def_cond"}), |
|
4975 |
and this is the only meaningful use of @{text cp_gen}. |
|
4976 |
||
4977 |
The introduction of @{text cp_gen} is purely technical to easy some |
|
4978 |
of the proofs leading to the finally lemma @{text cp_rec}. |
|
4979 |
*} |
|
4980 |
||
4981 |
definition "cp_gen s x = |
|
4982 |
Max ((the_preced s \<circ> the_thread) ` subtree (tRAG s) x)" |
|
4983 |
||
4984 |
lemma cp_gen_alt_def: |
|
4985 |
"cp_gen s = (Max \<circ> (\<lambda>x. (the_preced s \<circ> the_thread) ` subtree (tRAG s) x))" |
|
4986 |
by (auto simp:cp_gen_def) |
|
4987 |
||
4988 |
lemma cp_gen_def_cond: |
|
4989 |
assumes "x = Th th" |
|
4990 |
shows "cp s th = cp_gen s (Th th)" |
|
4991 |
by (unfold cp_alt_def1 cp_gen_def, simp) |
|
4992 |
||
4993 |
lemma cp_gen_over_set: |
|
4994 |
assumes "\<forall> x \<in> A. \<exists> th. x = Th th" |
|
4995 |
shows "cp_gen s ` A = (cp s \<circ> the_thread) ` A" |
|
4996 |
proof(rule f_image_eq) |
|
4997 |
fix a |
|
4998 |
assume "a \<in> A" |
|
4999 |
from assms[rule_format, OF this] |
|
5000 |
obtain th where eq_a: "a = Th th" by auto |
|
5001 |
show "cp_gen s a = (cp s \<circ> the_thread) a" |
|
5002 |
by (unfold eq_a, simp, unfold cp_gen_def_cond[OF refl[of "Th th"]], simp) |
|
5003 |
qed |
|
5004 |
||
80
17305a85493d
CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents:
77
diff
changeset
|
5005 |
|
102
3a801bbd2687
Reorganizing PIPBasics.thy and making small changes to Implementation.thy and Correctness.thy.
zhangx
parents:
101
diff
changeset
|
5006 |
context valid_trace |
3a801bbd2687
Reorganizing PIPBasics.thy and making small changes to Implementation.thy and Correctness.thy.
zhangx
parents:
101
diff
changeset
|
5007 |
begin |
116 | 5008 |
(* ddd *) |
5009 |
lemma cp_gen_rec: |
|
5010 |
assumes "x = Th th" |
|
5011 |
shows "cp_gen s x = Max ({the_preced s th} \<union> (cp_gen s) ` children (tRAG s) x)" |
|
5012 |
proof(cases "children (tRAG s) x = {}") |
|
5013 |
case True |
|
5014 |
show ?thesis |
|
5015 |
by (unfold True cp_gen_def subtree_children, simp add:assms) |
|
5016 |
next |
|
5017 |
case False |
|
5018 |
hence [simp]: "children (tRAG s) x \<noteq> {}" by auto |
|
5019 |
note fsbttRAGs.finite_subtree[simp] |
|
5020 |
have [simp]: "finite (children (tRAG s) x)" |
|
5021 |
by (intro rev_finite_subset[OF fsbttRAGs.finite_subtree], |
|
5022 |
rule children_subtree) |
|
5023 |
{ fix r x |
|
5024 |
have "subtree r x \<noteq> {}" by (auto simp:subtree_def) |
|
5025 |
} note this[simp] |
|
5026 |
have [simp]: "\<exists>x\<in>children (tRAG s) x. subtree (tRAG s) x \<noteq> {}" |
|
5027 |
proof - |
|
5028 |
from False obtain q where "q \<in> children (tRAG s) x" by blast |
|
5029 |
moreover have "subtree (tRAG s) q \<noteq> {}" by simp |
|
5030 |
ultimately show ?thesis by blast |
|
5031 |
qed |
|
5032 |
have h: "Max ((the_preced s \<circ> the_thread) ` |
|
5033 |
({x} \<union> \<Union>(subtree (tRAG s) ` children (tRAG s) x))) = |
|
5034 |
Max ({the_preced s th} \<union> cp_gen s ` children (tRAG s) x)" |
|
5035 |
(is "?L = ?R") |
|
5036 |
proof - |
|
5037 |
let "Max (?f ` (?A \<union> \<Union> (?g ` ?B)))" = ?L |
|
5038 |
let "Max (_ \<union> (?h ` ?B))" = ?R |
|
5039 |
let ?L1 = "?f ` \<Union>(?g ` ?B)" |
|
5040 |
have eq_Max_L1: "Max ?L1 = Max (?h ` ?B)" |
|
5041 |
proof - |
|
5042 |
have "?L1 = ?f ` (\<Union> x \<in> ?B.(?g x))" by simp |
|
5043 |
also have "... = (\<Union> x \<in> ?B. ?f ` (?g x))" by auto |
|
5044 |
finally have "Max ?L1 = Max ..." by simp |
|
5045 |
also have "... = Max (Max ` (\<lambda>x. ?f ` subtree (tRAG s) x) ` ?B)" |
|
5046 |
by (subst Max_UNION, simp+) |
|
5047 |
also have "... = Max (cp_gen s ` children (tRAG s) x)" |
|
5048 |
by (unfold image_comp cp_gen_alt_def, simp) |
|
5049 |
finally show ?thesis . |
|
5050 |
qed |
|
5051 |
show ?thesis |
|
5052 |
proof - |
|
5053 |
have "?L = Max (?f ` ?A \<union> ?L1)" by simp |
|
5054 |
also have "... = max (the_preced s (the_thread x)) (Max ?L1)" |
|
5055 |
by (subst Max_Un, simp+) |
|
5056 |
also have "... = max (?f x) (Max (?h ` ?B))" |
|
5057 |
by (unfold eq_Max_L1, simp) |
|
5058 |
also have "... =?R" |
|
5059 |
by (rule max_Max_eq, (simp)+, unfold assms, simp) |
|
5060 |
finally show ?thesis . |
|
5061 |
qed |
|
5062 |
qed thus ?thesis |
|
5063 |
by (fold h subtree_children, unfold cp_gen_def, simp) |
|
102
3a801bbd2687
Reorganizing PIPBasics.thy and making small changes to Implementation.thy and Correctness.thy.
zhangx
parents:
101
diff
changeset
|
5064 |
qed |
65
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5065 |
|
116 | 5066 |
lemma cp_rec: |
5067 |
"cp s th = Max ({the_preced s th} \<union> |
|
5068 |
(cp s o the_thread) ` children (tRAG s) (Th th))" |
|
65
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5069 |
proof - |
116 | 5070 |
have "Th th = Th th" by simp |
5071 |
note h = cp_gen_def_cond[OF this] cp_gen_rec[OF this] |
|
5072 |
show ?thesis |
|
5073 |
proof - |
|
5074 |
have "cp_gen s ` children (tRAG s) (Th th) = |
|
5075 |
(cp s \<circ> the_thread) ` children (tRAG s) (Th th)" |
|
5076 |
proof(rule cp_gen_over_set) |
|
5077 |
show " \<forall>x\<in>children (tRAG s) (Th th). \<exists>th. x = Th th" |
|
5078 |
by (unfold tRAG_alt_def, auto simp:children_def) |
|
5079 |
qed |
|
5080 |
thus ?thesis by (subst (1) h(1), unfold h(2), simp) |
|
65
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5081 |
qed |
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5082 |
qed |
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5083 |
|
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5084 |
end |
633b1fc8631b
Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents:
64
diff
changeset
|
5085 |
|
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5086 |
lemma PIP_actorE: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5087 |
assumes "PIP s e" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5088 |
and "actor e = th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5089 |
and "\<not> isCreate e" |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
5090 |
shows "th \<in> running s" |
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5091 |
using assms |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5092 |
by (cases, auto) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5093 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5094 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5095 |
lemma holdents_RAG: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5096 |
assumes "holdents s th = {}" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5097 |
shows "Th th \<notin> Range (RAG s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5098 |
proof |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5099 |
assume "Th th \<in> Range (RAG s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5100 |
thus False |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5101 |
proof(rule RangeE) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5102 |
fix a |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5103 |
assume "(a, Th th) \<in> RAG s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5104 |
with assms[unfolded holdents_test] |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5105 |
show False |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
5106 |
by (cases a, auto simp:RAG_raw_def s_RAG_abv) |
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5107 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5108 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5109 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5110 |
lemma readys_RAG: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5111 |
assumes "th \<in> readys s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5112 |
shows "Th th \<notin> Domain (RAG s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5113 |
proof |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5114 |
assume "Th th \<in> Domain (RAG s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5115 |
thus False |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5116 |
proof(rule DomainE) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5117 |
fix b |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5118 |
assume "(Th th, b) \<in> RAG s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5119 |
with assms[unfolded readys_def s_waiting_def] |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5120 |
show False |
127
38c6acf03f68
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
125
diff
changeset
|
5121 |
by (cases b, auto simp: RAG_raw_def s_RAG_abv waiting_raw_def) |
125
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5122 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5123 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5124 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5125 |
lemma readys_holdents_detached: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5126 |
assumes "th \<in> readys s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5127 |
and "holdents s th = {}" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5128 |
shows "detached s th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5129 |
proof - |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5130 |
from readys_RAG[OF assms(1)] holdents_RAG[OF assms(2)] |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5131 |
show ?thesis |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5132 |
by (unfold detached_test Field_def, auto) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5133 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5134 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5135 |
lemma len_actions_of_sigma: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5136 |
assumes "finite A" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5137 |
shows "length (actions_of A t) = (\<Sum> th' \<in> A. length (actions_of {th'} t))" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5138 |
proof(induct t) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5139 |
case h: (Cons e t) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5140 |
thus ?case (is "?L = ?R" is "_ = ?T (e#t)") |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5141 |
proof(cases "actor e \<in> A") |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5142 |
case True |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5143 |
have "?L = 1 + ?T t" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5144 |
by (fold h, insert True, simp add:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5145 |
moreover have "?R = 1 + ?T t" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5146 |
proof - |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5147 |
have "?R = length (actions_of {actor e} (e # t)) + |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5148 |
(\<Sum>th'\<in>A - {actor e}. length (actions_of {th'} (e # t)))" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5149 |
(is "_ = ?F (e#t) + ?G (e#t)") |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5150 |
by (subst comm_monoid_add_class.setsum.remove[where x = "actor e", |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5151 |
OF assms True], simp) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5152 |
moreover have "?F (e#t) = 1 + ?F t" using True |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5153 |
by (simp add:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5154 |
moreover have "?G (e#t) = ?G t" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5155 |
by (rule setsum.cong, auto simp:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5156 |
moreover have "?F t + ?G t = ?T t" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5157 |
by (subst comm_monoid_add_class.setsum.remove[where x = "actor e", |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5158 |
OF assms True], simp) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5159 |
ultimately show ?thesis by simp |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5160 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5161 |
ultimately show ?thesis by simp |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5162 |
next |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5163 |
case False |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5164 |
hence "?L = length (actions_of A t)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5165 |
by (simp add:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5166 |
also have "... = (\<Sum>th'\<in>A. length (actions_of {th'} t))" by (simp add: h) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5167 |
also have "... = ?R" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5168 |
by (rule setsum.cong; insert False, auto simp:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5169 |
finally show ?thesis . |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5170 |
qed |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5171 |
qed (auto simp:actions_of_def) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5172 |
|
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5173 |
lemma threads_Exit: |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5174 |
assumes "th \<in> threads s" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5175 |
and "th \<notin> threads (e#s)" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5176 |
shows "e = Exit th" |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5177 |
using assms |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5178 |
by (cases e, auto) |
95e7933968f8
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
121
diff
changeset
|
5179 |
|
108 | 5180 |
end |