(* Title: HOL/UNITY/Comp/Priority.thy Author: Sidi O Ehmety, Cambridge University Computer Laboratory Copyright 2001 University of Cambridge
*)
section\<open>The priority system\<close>
theory Priority imports PriorityAux begin
text\<open>From Charpentier and Chandy,
Examples of Program Composition Illustrating the Use of Universal Properties In J. Rolim (editor), Parallel and Distributed Processing,
Spriner LNCS 1586 (1999), pages 1215-1227.\<close>
type_synonym state = "(vertex*vertex)set" type_synonym command = "vertex=>(state*state)set"
text\<open>Following the definitions given in section 4.4\<close>
definition highest :: "[vertex, (vertex*vertex)set]=>bool" where"highest i r \ A i r = {}" \<comment> \<open>i has highest priority in r\<close>
definition lowest :: "[vertex, (vertex*vertex)set]=>bool" where"lowest i r \ R i r = {}" \<comment> \<open>i has lowest priority in r\<close>
definition act :: command where"act i = {(s, s'). s'=reverse i s & highest i s}"
definition Component :: "vertex=>state program" where"Component i = mk_total_program({init}, {act i}, UNIV)" \<comment> \<open>All components start with the same initial state\<close>
text\<open>Some Abbreviations\<close> definition Highest :: "vertex=>state set" where"Highest i = {s. highest i s}"
definition Lowest :: "vertex=>state set" where"Lowest i = {s. lowest i s}"
definition Acyclic :: "state set" where"Acyclic = {s. acyclic s}"
definition Maximal :: "state set" \<comment> \<open>Every ``above'' set has a maximal vertex\<close> where"Maximal = (\i. {s. ~highest i s-->(\j \ above i s. highest j s)})"
definition Maximal' :: "state set" \<comment> \<open>Maximal vertex: equivalent definition\<close> where"Maximal' = (\i. Highest i Un (\j. {s. j \ above i s} Int Highest j))"
definition Safety :: "state set" where"Safety = (\i. {s. highest i s --> (\j \ neighbors i s. ~highest j s)})"
(* Composition of a finite set of component;
the vertex 'UNIV' is finite by assumption *)
definition system :: "state program" where"system = (\i. Component i)"
text\<open>neighbors is stable\<close> lemma Component_neighbors_stable: "Component i \ stable {s. neighbors k s = n}" by (simp add: Component_def, safety, auto)
text\<open>property 4\<close> lemma Component_waits_priority: "Component i \ {s. ((i,j) \ s) = b} \ (- Highest i) co {s. ((i,j) \ s)=b}" by (simp add: Component_def, safety)
text\<open>property 5: charpentier and Chandy mistakenly express it as 'transient Highest i'. Consider the casewhere i has neighbors\<close> lemma Component_yields_priority: "Component i \ {s. neighbors i s \ {}} Int Highest i
ensures - Highest i" apply (simp add: Component_def) apply (ensures_tac "act i", blast+) done
text\<open>property 6: Component doesn't introduce cycle\<close> lemma Component_well_behaves: "Component i \ Highest i co Highest i Un Lowest i" by (simp add: Component_def, safety, fast)
text\<open>property 7: local axiom\<close> lemma locality: "Component i \ stable {s. \j k. j\i & k\i--> ((j,k) \ s) = b j k}" by (simp add: Component_def, safety)
text\<open>property 13: universal\<close> lemma p13: "system \ {s. s = q} co {s. s=q} Un {s. \i. derive i q s}" by (simp add: system_def Component_def mk_total_program_def totalize_JN, safety, blast)
text\<open>property 14: the 'above set' of a Component that hasn't got
priority doesn't increase\ lemma above_not_increase: "system \ -Highest i Int {s. j\above i s} co {s. j\above i s}" apply (insert reach_lemma [of concl: j]) apply (simp add: system_def Component_def mk_total_program_def totalize_JN,
safety) apply (simp add: trancl_converse, blast) done
lemma above_not_increase': "system \ -Highest i Int {s. above i s = x} co {s. above i s <= x}" apply (insert above_not_increase [of i]) apply (simp add: trancl_converse constrains_def, blast) done
text\<open>p15: universal property: all Components well behave\<close> lemma system_well_behaves: "system \ Highest i co Highest i Un Lowest i" by (simp add: system_def Component_def mk_total_program_def totalize_JN, safety, auto)
lemma Acyclic_eq: "Acyclic = (\i. {s. i\above i s})" by (auto simp add: Acyclic_def acyclic_def trancl_converse)
text\<open>property 17: original one is an invariant\<close> lemma Acyclic_Maximal_stable: "system \ stable (Acyclic Int Maximal)" by (simp add: Acyclic_subset_Maximal [THEN Int_absorb2] Acyclic_stable)
text\<open>a lowest i can never be in any abover set\<close> lemma Lowest_above_subset: "Lowest i <= (\k. {s. i\above k s})" by (auto simp add: image0_r_iff_image0_trancl trancl_converse)
text\<open>property 18: a simpler proof than the original, one which uses psp\<close> lemma Highest_escapes_above: "system \ Highest i leadsTo (\k. {s. i\above k s})" apply (rule leadsTo_weaken_R) apply (rule_tac [2] Lowest_above_subset) apply (rule Highest_leadsTo_Lowest) done
lemma Highest_escapes_above': "system \ Highest j Int {s. j \ above i s} leadsTo {s. j\above i s}" by (blast intro: leadsTo_weaken [OF Highest_escapes_above Int_lower1 INT_lower])
subsection\<open>The main result: above set decreases\<close>
text\<open>The original proof of the following formula was wrong\<close>
lemma Highest_iff_above0: "Highest i = {s. above i s ={}}" by (auto simp add: image0_trancl_iff_image0_r)
lemmas above_decreases_lemma =
psp [THEN leadsTo_weaken, OF Highest_escapes_above' above_not_increase']
lemma above_decreases: "system \ (\j. {s. above i s = x} Int {s. j \ above i s} Int Highest j)
leadsTo {s. above i s < x}" apply (rule leadsTo_UN) apply (rule single_leadsTo_I, clarify) apply (rule_tac x = "above i xa"in above_decreases_lemma) apply (simp_all (no_asm_use) add: Highest_iff_above0) apply blast+ done
(** Just a massage of conditions to have the desired form ***) lemma Maximal_eq_Maximal': "Maximal = Maximal'" by (unfold Maximal_def Maximal'_def Highest_def, blast)
lemma Acyclic_subset: "x\{} ==>
Acyclic Int {s. above i s = x} <=
(\<Union>j. {s. above i s = x} Int {s. j \<in> above i s} Int Highest j)" apply (rule_tac B = "Maximal' Int {s. above i s = x}"in subset_trans) apply (simp (no_asm) add: Maximal_eq_Maximal' [symmetric]) apply (blast intro: Acyclic_subset_Maximal [THEN subsetD]) apply (simp (no_asm) del: above_def add: Maximal'_def Highest_iff_above0) apply blast done
lemma above_decreases_psp': "x\{}==> system \ Acyclic Int {s. above i s = x} leadsTo
Acyclic Int {s. above i s < x}" by (erule above_decreases_psp [THEN leadsTo_weaken], blast, auto)
lemma Progress: "system \ Acyclic leadsTo Highest i" apply (rule_tac f = "%s. above i s"in finite_psubset_induct) apply (simp del: above_def
add: Highest_iff_above0 vimage_def finite_psubset_def, clarify) apply (case_tac "m={}") apply (rule Int_lower2 [THEN [2] leadsTo_weaken_L]) apply (force simp add: leadsTo_refl) apply (rule_tac A' = "Acyclic Int {x. above i x < m}" in leadsTo_weaken_R) apply (blast intro: above_decreases_psp')+ done
text\<open>We have proved all (relevant) theorems given in the paper. We didn't assume any thing about the relation \<^term>\<open>r\<close>. It is not necessary that \<^term>\<open>r\<close> be a priority relation as assumed in the original proof. It
suffices that we start from a state which is finite and acyclic.\<close>
end
¤ Dauer der Verarbeitung: 0.14 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.