prio/ExtSG.thy
author urbanc
Mon, 30 Jan 2012 08:55:27 +0000
changeset 269 70395e3fd99f
parent 262 4190df6f4488
permissions -rw-r--r--
more text
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     1
theory ExtSG
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     2
imports PrioG
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     3
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     4
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     5
locale highest_set =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     6
  fixes s' th prio fixes s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     7
  defines s_def : "s \<equiv> (Set th prio#s')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     8
  assumes vt_s: "vt step s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     9
  and highest: "preced th s = Max ((cp s)`threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    10
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    11
context highest_set
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    12
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    13
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    14
lemma vt_s': "vt step s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    15
  by (insert vt_s, unfold s_def, drule_tac step_back_vt, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    16
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    17
lemma step_set: "step s' (Set th prio)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    18
  by (insert vt_s, unfold s_def, drule_tac step_back_step, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    19
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    20
lemma step_set_elim: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    21
  "\<lbrakk>\<lbrakk>th \<in> runing s'\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    22
  by (insert step_set, ind_cases "step s' (Set th prio)", auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    23
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    24
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    25
lemma threads_s: "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    26
  by (rule step_set_elim, unfold runing_def readys_def, auto simp:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    27
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    28
lemma same_depend: "depend s = depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    29
  by (insert depend_set_unchanged, unfold s_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    30
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    31
lemma same_dependents:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    32
  "dependents (wq s) th = dependents (wq s') th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    33
  apply (unfold cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    34
  by (unfold eq_depend same_depend, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    35
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    36
lemma eq_cp_s_th: "cp s th = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    37
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    38
  from highest and max_cp_eq[OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    39
  have is_max: "preced th s = Max ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    40
  have sbs: "({th} \<union> dependents (wq s) th) \<subseteq> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    41
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    42
    from threads_s and dependents_threads[OF vt_s, of th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    43
    show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    44
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    45
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    46
  proof(unfold cp_eq_cpreced cpreced_def, rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    47
    show "preced th s \<in> (\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    48
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    49
    fix y 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    50
    assume "y \<in> (\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    51
    then obtain th1 where th1_in: "th1 \<in> ({th} \<union> dependents (wq s) th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    52
      and eq_y: "y = preced th1 s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    53
    show "y \<le> preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    54
    proof(unfold is_max, rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    55
      from finite_threads[OF vt_s] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    56
      show "finite ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    57
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    58
      from sbs th1_in and eq_y 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    59
      show "y \<in> (\<lambda>th. preced th s) ` threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    60
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    61
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    62
    from sbs and finite_threads[OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    63
    show "finite ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    64
      by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    65
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    66
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    67
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    68
lemma highest_cp_preced: "cp s th = Max ((\<lambda> th'. preced th' s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    69
  by (fold max_cp_eq[OF vt_s], unfold eq_cp_s_th, insert highest, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    70
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    71
lemma highest_preced_thread: "preced th s = Max ((\<lambda> th'. preced th' s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    72
  by (fold eq_cp_s_th, unfold highest_cp_preced, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    73
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    74
lemma is_ready: "th \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    75
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    76
  have "\<forall>cs. \<not> waiting s th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    77
    apply (rule step_set_elim, unfold s_def, insert depend_set_unchanged[of th prio s'])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    78
    apply (unfold s_depend_def, unfold runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    79
    apply (auto, fold s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    80
    apply (erule_tac x = cs in allE, auto simp:waiting_eq)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    81
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    82
    fix cs
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    83
    assume h: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    84
      "{(Th t, Cs c) |t c. waiting (wq s) t c} \<union> {(Cs c, Th t) |c t. holding (wq s) t c} =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    85
          {(Th t, Cs c) |t c. waiting (wq s') t c} \<union> {(Cs c, Th t) |c t. holding (wq s') t c}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    86
            (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    87
    and wt: "waiting (wq s) th cs" and nwt: "\<not> waiting (wq s') th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    88
    from wt have "(Th th, Cs cs) \<in> ?L" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    89
    with h have "(Th th, Cs cs) \<in> ?R" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    90
    hence "waiting (wq s') th cs" by auto with nwt
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    91
    show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    92
  qed    
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    93
  with threads_s show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    94
    by (unfold readys_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    95
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    96
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    97
lemma highest': "cp s th = Max (cp s ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    98
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    99
  from highest_cp_preced max_cp_eq[OF vt_s, symmetric]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   100
  show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   101
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   102
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   103
lemma is_runing: "th \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   104
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   105
  have "Max (cp s ` threads s) = Max (cp s ` readys s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   106
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   107
    have " Max (cp s ` readys s) = cp s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   108
    proof(rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   109
      from finite_threads[OF vt_s] readys_threads finite_subset
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   110
      have "finite (readys s)" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   111
      thus "finite (cp s ` readys s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   112
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   113
      from is_ready show "cp s th \<in> cp s ` readys s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   114
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   115
      fix y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   116
      assume "y \<in> cp s ` readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   117
      then obtain th1 where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   118
        eq_y: "y = cp s th1" and th1_in: "th1 \<in> readys s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   119
      show  "y \<le> cp s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   120
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   121
        have "y \<le> Max (cp s ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   122
        proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   123
          from eq_y and th1_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   124
          show "y \<in> cp s ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   125
            by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   126
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   127
          from finite_threads[OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   128
          show "finite (cp s ` threads s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   129
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   130
        with highest' show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   131
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   132
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   133
    with highest' show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   134
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   135
  thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   136
    by (unfold runing_def, insert highest' is_ready, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   137
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   138
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   139
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   140
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   141
locale extend_highest_set = highest_set + 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   142
  fixes t 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   143
  assumes vt_t: "vt step (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   144
  and create_low: "Create th' prio' \<in> set t \<Longrightarrow> prio' \<le> prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   145
  and set_diff_low: "Set th' prio' \<in> set t \<Longrightarrow> th' \<noteq> th \<and> prio' \<le> prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   146
  and exit_diff: "Exit th' \<in> set t \<Longrightarrow> th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   147
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   148
lemma step_back_vt_app: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   149
  assumes vt_ts: "vt cs (t@s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   150
  shows "vt cs s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   151
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   152
  from vt_ts show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   153
  proof(induct t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   154
    case Nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   155
    from Nil show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   156
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   157
    case (Cons e t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   158
    assume ih: " vt cs (t @ s) \<Longrightarrow> vt cs s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   159
      and vt_et: "vt cs ((e # t) @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   160
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   161
    proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   162
      show "vt cs (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   163
      proof(rule step_back_vt)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   164
        from vt_et show "vt cs (e # t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   165
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   166
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   167
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   168
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   169
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   170
context extend_highest_set
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   171
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   172
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   173
lemma red_moment:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   174
  "extend_highest_set s' th prio (moment i t)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   175
  apply (insert extend_highest_set_axioms, subst (asm) (1) moment_restm_s [of i t, symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   176
  apply (unfold extend_highest_set_def extend_highest_set_axioms_def, clarsimp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   177
  by (unfold highest_set_def, auto dest:step_back_vt_app)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   178
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   179
lemma ind [consumes 0, case_names Nil Cons, induct type]:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   180
  assumes 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   181
    h0: "R []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   182
  and h2: "\<And> e t. \<lbrakk>vt step (t@s); step (t@s) e; 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   183
                    extend_highest_set s' th prio t; 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   184
                    extend_highest_set s' th prio (e#t); R t\<rbrakk> \<Longrightarrow> R (e#t)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   185
  shows "R t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   186
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   187
  from vt_t extend_highest_set_axioms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   188
  proof(induct t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   189
    from h0 show "R []" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   190
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   191
    case (Cons e t')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   192
    assume ih: "\<lbrakk>vt step (t' @ s); extend_highest_set s' th prio t'\<rbrakk> \<Longrightarrow> R t'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   193
      and vt_e: "vt step ((e # t') @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   194
      and et: "extend_highest_set s' th prio (e # t')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   195
    from vt_e and step_back_step have stp: "step (t'@s) e" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   196
    from vt_e and step_back_vt have vt_ts: "vt step (t'@s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   197
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   198
    proof(rule h2 [OF vt_ts stp _ _ _ ])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   199
      show "R t'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   200
      proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   201
        from et show ext': "extend_highest_set s' th prio t'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   202
          by (unfold extend_highest_set_def extend_highest_set_axioms_def, auto dest:step_back_vt)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   203
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   204
        from vt_ts show "vt step (t' @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   205
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   206
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   207
      from et show "extend_highest_set s' th prio (e # t')" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   208
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   209
      from et show ext': "extend_highest_set s' th prio t'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   210
          by (unfold extend_highest_set_def extend_highest_set_axioms_def, auto dest:step_back_vt)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   211
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   212
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   213
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   214
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   215
lemma th_kept: "th \<in> threads (t @ s) \<and> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   216
        preced th (t@s) = preced th s" (is "?Q t")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   217
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   218
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   219
  proof(induct rule:ind)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   220
    case Nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   221
    from threads_s
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   222
    show "th \<in> threads ([] @ s) \<and> preced th ([] @ s) = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   223
      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   224
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   225
    case (Cons e t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   226
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   227
    proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   228
      case (Create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   229
      assume eq_e: " e = Create thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   230
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   231
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   232
        from Cons and eq_e have "step (t@s) (Create thread prio)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   233
        hence "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   234
        proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   235
          assume "thread \<notin> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   236
          with Cons show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   237
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   238
        hence "preced th ((e # t) @ s)  = preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   239
          by (unfold eq_e, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   240
        moreover note Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   241
        ultimately show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   242
          by (auto simp:eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   243
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   244
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   245
      case (Exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   246
      assume eq_e: "e = Exit thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   247
      from Cons have "extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   248
      from extend_highest_set.exit_diff [OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   249
      have neq_th: "thread \<noteq> th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   250
      with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   251
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   252
        by (unfold eq_e, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   253
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   254
      case (P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   255
      assume eq_e: "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   256
      with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   257
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   258
        by (auto simp:eq_e preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   259
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   260
      case (V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   261
      assume eq_e: "e = V thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   262
      with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   263
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   264
        by (auto simp:eq_e preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   265
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   266
      case (Set thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   267
      assume eq_e: " e = Set thread prio'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   268
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   269
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   270
        from Cons have "extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   271
        from extend_highest_set.set_diff_low[OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   272
        have "th \<noteq> thread" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   273
        hence "preced th ((e # t) @ s)  = preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   274
          by (unfold eq_e, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   275
        moreover note Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   276
        ultimately show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   277
          by (auto simp:eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   278
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   279
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   280
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   281
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   282
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   283
lemma max_kept: "Max ((\<lambda> th'. preced th' (t @ s)) ` (threads (t@s))) = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   284
proof(induct rule:ind)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   285
  case Nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   286
  from highest_preced_thread
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   287
  show "Max ((\<lambda>th'. preced th' ([] @ s)) ` threads ([] @ s)) = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   288
    by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   289
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   290
  case (Cons e t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   291
  show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   292
  proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   293
    case (Create thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   294
    assume eq_e: " e = Create thread prio'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   295
    from Cons and eq_e have stp: "step (t@s) (Create thread prio')" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   296
    hence neq_thread: "thread \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   297
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   298
      assume "thread \<notin> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   299
      moreover have "th \<in> threads (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   300
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   301
        from Cons have "extend_highest_set s' th prio t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   302
        from extend_highest_set.th_kept[OF this] show ?thesis by (simp add:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   303
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   304
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   305
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   306
    from Cons have "extend_highest_set s' th prio t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   307
    from extend_highest_set.th_kept[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   308
    have h': " th \<in> threads (t @ s) \<and> preced th (t @ s) = preced th s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   309
      by (auto simp:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   310
    from stp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   311
    have thread_ts: "thread \<notin> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   312
      by (cases, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   313
    show ?thesis (is "Max (?f ` ?A) = ?t")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   314
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   315
      have "Max (?f ` ?A) = Max(insert (?f thread) (?f ` (threads (t@s))))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   316
        by (unfold eq_e, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   317
      moreover have "\<dots> = max (?f thread) (Max (?f ` (threads (t@s))))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   318
      proof(rule Max_insert)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   319
        from Cons have "vt step (t @ s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   320
        from finite_threads[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   321
        show "finite (?f ` (threads (t@s)))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   322
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   323
        from h' show "(?f ` (threads (t@s))) \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   324
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   325
      moreover have "(Max (?f ` (threads (t@s)))) = ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   326
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   327
        have "(\<lambda>th'. preced th' ((e # t) @ s)) ` threads (t @ s) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   328
          (\<lambda>th'. preced th' (t @ s)) ` threads (t @ s)" (is "?f1 ` ?B = ?f2 ` ?B")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   329
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   330
          { fix th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   331
            assume "th' \<in> ?B"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   332
            with thread_ts eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   333
            have "?f1 th' = ?f2 th'" by (auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   334
          } thus ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   335
            apply (auto simp:Image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   336
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   337
            fix th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   338
            assume h: "\<And>th'. th' \<in> threads (t @ s) \<Longrightarrow> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   339
              preced th' (e # t @ s) = preced th' (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   340
              and h1: "th' \<in> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   341
            show "preced th' (t @ s) \<in> (\<lambda>th'. preced th' (e # t @ s)) ` threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   342
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   343
              from h1 have "?f1 th' \<in> ?f1 ` ?B" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   344
              moreover from h[OF h1] have "?f1 th' = ?f2 th'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   345
              ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   346
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   347
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   348
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   349
        with Cons show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   350
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   351
      moreover have "?f thread < ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   352
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   353
        from Cons have " extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   354
        from extend_highest_set.create_low[OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   355
        have "prio' \<le> prio" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   356
        thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   357
        by (unfold eq_e, auto simp:preced_def s_def precedence_less_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   358
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   359
    ultimately show ?thesis by (auto simp:max_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   360
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   361
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   362
    case (Exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   363
    assume eq_e: "e = Exit thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   364
    from Cons have vt_e: "vt step (e#(t @ s))" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   365
    from Cons and eq_e have stp: "step (t@s) (Exit thread)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   366
    from stp have thread_ts: "thread \<in> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   367
      by(cases, unfold runing_def readys_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   368
    from Cons have "extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   369
    from extend_highest_set.exit_diff[OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   370
    have neq_thread: "thread \<noteq> th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   371
    from Cons have "extend_highest_set s' th prio t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   372
    from extend_highest_set.th_kept[OF this, folded s_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   373
    have h': "th \<in> threads (t @ s) \<and> preced th (t @ s) = preced th s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   374
    show ?thesis (is "Max (?f ` ?A) = ?t")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   375
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   376
      have "threads (t@s) = insert thread ?A"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   377
        by (insert stp thread_ts, unfold eq_e, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   378
      hence "Max (?f ` (threads (t@s))) = Max (?f ` \<dots>)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   379
      also from this have "\<dots> = Max (insert (?f thread) (?f ` ?A))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   380
      also have "\<dots> = max (?f thread) (Max (?f ` ?A))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   381
      proof(rule Max_insert)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   382
        from finite_threads [OF vt_e]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   383
        show "finite (?f ` ?A)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   384
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   385
        from Cons have "extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   386
        from extend_highest_set.th_kept[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   387
        show "?f ` ?A \<noteq> {}" by  (auto simp:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   388
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   389
      finally have "Max (?f ` (threads (t@s))) = max (?f thread) (Max (?f ` ?A))" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   390
      moreover have "Max (?f ` (threads (t@s))) = ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   391
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   392
        from Cons show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   393
          by (unfold eq_e, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   394
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   395
      ultimately have "max (?f thread) (Max (?f ` ?A)) = ?t" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   396
      moreover have "?f thread < ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   397
      proof(unfold eq_e, simp add:preced_def, fold preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   398
        show "preced thread (t @ s) < ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   399
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   400
          have "preced thread (t @ s) \<le> ?t" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   401
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   402
            from Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   403
            have "?t = Max ((\<lambda>th'. preced th' (t @ s)) ` threads (t @ s))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   404
              (is "?t = Max (?g ` ?B)") by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   405
            moreover have "?g thread \<le> \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   406
            proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   407
              have "vt step (t@s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   408
              from finite_threads [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   409
              show "finite (?g ` ?B)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   410
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   411
              from thread_ts
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   412
              show "?g thread \<in> (?g ` ?B)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   413
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   414
            ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   415
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   416
          moreover have "preced thread (t @ s) \<noteq> ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   417
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   418
            assume "preced thread (t @ s) = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   419
            with h' have "preced thread (t @ s) = preced th (t@s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   420
            from preced_unique [OF this] have "thread = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   421
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   422
              from h' show "th \<in> threads (t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   423
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   424
              from thread_ts show "thread \<in> threads (t @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   425
            qed(simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   426
            with neq_thread show "False" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   427
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   428
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   429
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   430
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   431
      ultimately show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   432
        by (auto simp:max_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   433
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   434
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   435
    case (P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   436
    with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   437
    show ?thesis by (auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   438
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   439
    case (V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   440
    with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   441
    show ?thesis by (auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   442
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   443
    case (Set thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   444
    show ?thesis (is "Max (?f ` ?A) = ?t")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   445
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   446
      let ?B = "threads (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   447
      from Cons have "extend_highest_set s' th prio (e # t)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   448
      from extend_highest_set.set_diff_low[OF this] and Set
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   449
      have neq_thread: "thread \<noteq> th" and le_p: "prio' \<le> prio" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   450
      from Set have "Max (?f ` ?A) = Max (?f ` ?B)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   451
      also have "\<dots> = ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   452
      proof(rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   453
        fix y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   454
        assume y_in: "y \<in> ?f ` ?B"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   455
        then obtain th1 where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   456
          th1_in: "th1 \<in> ?B" and eq_y: "y = ?f th1" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   457
        show "y \<le> ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   458
        proof(cases "th1 = thread")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   459
          case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   460
          with neq_thread le_p eq_y s_def Set
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   461
          show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   462
            by (auto simp:preced_def precedence_le_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   463
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   464
          case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   465
          with Set eq_y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   466
          have "y  = preced th1 (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   467
            by (simp add:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   468
          moreover have "\<dots> \<le> ?t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   469
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   470
            from Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   471
            have "?t = Max ((\<lambda> th'. preced th' (t@s)) ` (threads (t@s)))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   472
              by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   473
            moreover have "preced th1 (t@s) \<le> \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   474
            proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   475
              from th1_in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   476
              show "preced th1 (t @ s) \<in> (\<lambda>th'. preced th' (t @ s)) ` threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   477
                by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   478
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   479
              show "finite ((\<lambda>th'. preced th' (t @ s)) ` threads (t @ s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   480
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   481
                from Cons have "vt step (t @ s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   482
                from finite_threads[OF this] show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   483
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   484
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   485
            ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   486
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   487
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   488
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   489
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   490
        from Cons and finite_threads
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   491
        show "finite (?f ` ?B)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   492
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   493
        from Cons have "extend_highest_set s' th prio t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   494
        from extend_highest_set.th_kept [OF this, folded s_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   495
        have h: "th \<in> threads (t @ s) \<and> preced th (t @ s) = preced th s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   496
        show "?t \<in> (?f ` ?B)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   497
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   498
          from neq_thread Set h
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   499
          have "?t = ?f th" by (auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   500
          with h show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   501
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   502
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   503
      finally show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   504
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   505
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   506
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   507
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   508
lemma max_preced: "preced th (t@s) = Max ((\<lambda> th'. preced th' (t @ s)) ` (threads (t@s)))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   509
  by (insert th_kept max_kept, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   510
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   511
lemma th_cp_max_preced: "cp (t@s) th = Max ((\<lambda> th'. preced th' (t @ s)) ` (threads (t@s)))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   512
  (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   513
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   514
  have "?L = cpreced (t@s) (wq (t@s)) th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   515
    by (unfold cp_eq_cpreced, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   516
  also have "\<dots> = ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   517
  proof(unfold cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   518
    show "Max ((\<lambda>th. preced th (t @ s)) ` ({th} \<union> dependents (wq (t @ s)) th)) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   519
          Max ((\<lambda>th'. preced th' (t @ s)) ` threads (t @ s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   520
      (is "Max (?f ` ({th} \<union> ?A)) = Max (?f ` ?B)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   521
    proof(cases "?A = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   522
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   523
      have "Max (?f ` ({th} \<union> ?A)) = Max (insert (?f th) (?f ` ?A))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   524
      moreover have "\<dots> = max (?f th) (Max (?f ` ?A))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   525
      proof(rule Max_insert)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   526
        show "finite (?f ` ?A)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   527
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   528
          from dependents_threads[OF vt_t]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   529
          have "?A \<subseteq> threads (t@s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   530
          moreover from finite_threads[OF vt_t] have "finite \<dots>" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   531
          ultimately show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   532
            by (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   533
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   534
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   535
        from False show "(?f ` ?A) \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   536
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   537
      moreover have "\<dots> = Max (?f ` ?B)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   538
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   539
        from max_preced have "?f th = Max (?f ` ?B)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   540
        moreover have "Max (?f ` ?A) \<le> \<dots>" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   541
        proof(rule Max_mono)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   542
          from False show "(?f ` ?A) \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   543
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   544
          show "?f ` ?A \<subseteq> ?f ` ?B" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   545
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   546
            have "?A \<subseteq> ?B" by (rule dependents_threads[OF vt_t])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   547
            thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   548
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   549
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   550
          from finite_threads[OF vt_t] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   551
          show "finite (?f ` ?B)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   552
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   553
        ultimately show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   554
          by (auto simp:max_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   555
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   556
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   557
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   558
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   559
      with max_preced show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   560
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   561
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   562
  finally show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   563
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   564
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   565
lemma th_cp_max: "cp (t@s) th = Max (cp (t@s) ` threads (t@s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   566
  by (unfold max_cp_eq[OF vt_t] th_cp_max_preced, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   567
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   568
lemma th_cp_preced: "cp (t@s) th = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   569
  by (fold max_kept, unfold th_cp_max_preced, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   570
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   571
lemma preced_less':
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   572
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   573
  assumes th'_in: "th' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   574
  and neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   575
  shows "preced th' s < preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   576
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   577
  have "preced th' s \<le> Max ((\<lambda>th'. preced th' s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   578
  proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   579
    from finite_threads [OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   580
    show "finite ((\<lambda>th'. preced th' s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   581
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   582
    from th'_in show "preced th' s \<in> (\<lambda>th'. preced th' s) ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   583
      by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   584
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   585
  moreover have "preced th' s \<noteq> preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   586
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   587
    assume "preced th' s = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   588
    from preced_unique[OF this th'_in] neq_th' is_ready
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   589
    show "False" by  (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   590
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   591
  ultimately show ?thesis using highest_preced_thread
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   592
    by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   593
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   594
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   595
lemma pv_blocked:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   596
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   597
  assumes th'_in: "th' \<in> threads (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   598
  and neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   599
  and eq_pv: "cntP (t@s) th' = cntV (t@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   600
  shows "th' \<notin> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   601
proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   602
  assume "th' \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   603
  hence "cp (t@s) th' = Max (cp (t@s) ` readys (t@s))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   604
    by (auto simp:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   605
  with max_cp_readys_threads [OF vt_t]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   606
  have "cp (t @ s) th' = Max (cp (t@s) ` threads (t@s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   607
    by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   608
  moreover from th_cp_max have "cp (t @ s) th = \<dots>" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   609
  ultimately have "cp (t @ s) th' = cp (t @ s) th" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   610
  moreover from th_cp_preced and th_kept have "\<dots> = preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   611
    by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   612
  finally have h: "cp (t @ s) th' = preced th (t @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   613
  show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   614
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   615
    have "dependents (wq (t @ s)) th' = {}" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   616
      by (rule count_eq_dependents [OF vt_t eq_pv])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   617
    moreover have "preced th' (t @ s) \<noteq> preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   618
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   619
      assume "preced th' (t @ s) = preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   620
      hence "th' = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   621
      proof(rule preced_unique)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   622
        from th_kept show "th \<in> threads (t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   623
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   624
        from th'_in show "th' \<in> threads (t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   625
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   626
      with assms show False by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   627
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   628
    ultimately show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   629
      by (insert h, unfold cp_eq_cpreced cpreced_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   630
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   631
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   632
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   633
lemma runing_precond_pre:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   634
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   635
  assumes th'_in: "th' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   636
  and eq_pv: "cntP s th' = cntV s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   637
  and neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   638
  shows "th' \<in> threads (t@s) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   639
         cntP (t@s) th' = cntV (t@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   640
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   641
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   642
  proof(induct rule:ind)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   643
    case (Cons e t)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   644
    from Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   645
    have in_thread: "th' \<in> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   646
      and not_holding: "cntP (t @ s) th' = cntV (t @ s) th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   647
    have "extend_highest_set s' th prio t" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   648
    from extend_highest_set.pv_blocked 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   649
    [OF this, folded s_def, OF in_thread neq_th' not_holding]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   650
    have not_runing: "th' \<notin> runing (t @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   651
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   652
    proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   653
      case (V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   654
      from Cons and V have vt_v: "vt step (V thread cs#(t@s))" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   655
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   656
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   657
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   658
        from Cons and V have "step (t@s) (V thread cs)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   659
        hence neq_th': "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   660
        proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   661
          assume "thread \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   662
          moreover have "th' \<notin> runing (t@s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   663
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   664
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   665
        with not_holding have cnt_eq: "cntP ((e # t) @ s) th' = cntV ((e # t) @ s) th'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   666
          by (unfold V, simp add:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   667
        moreover from in_thread
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   668
        have in_thread': "th' \<in> threads ((e # t) @ s)" by (unfold V, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   669
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   670
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   671
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   672
      case (P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   673
      from Cons and P have "step (t@s) (P thread cs)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   674
      hence neq_th': "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   675
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   676
        assume "thread \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   677
        moreover note not_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   678
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   679
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   680
      with Cons and P have eq_cnt: "cntP ((e # t) @ s) th' = cntV ((e # t) @ s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   681
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   682
      moreover from Cons and P have in_thread': "th' \<in> threads ((e # t) @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   683
        by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   684
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   685
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   686
      case (Create thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   687
      from Cons and Create have "step (t@s) (Create thread prio')" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   688
      hence neq_th': "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   689
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   690
        assume "thread \<notin> threads (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   691
        moreover have "th' \<in> threads (t@s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   692
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   693
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   694
      with Cons and Create 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   695
      have eq_cnt: "cntP ((e # t) @ s) th' = cntV ((e # t) @ s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   696
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   697
      moreover from Cons and Create 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   698
      have in_thread': "th' \<in> threads ((e # t) @ s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   699
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   700
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   701
      case (Exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   702
      from Cons and Exit have "step (t@s) (Exit thread)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   703
      hence neq_th': "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   704
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   705
        assume "thread \<in> runing (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   706
        moreover note not_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   707
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   708
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   709
      with Cons and Exit 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   710
      have eq_cnt: "cntP ((e # t) @ s) th' = cntV ((e # t) @ s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   711
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   712
      moreover from Cons and Exit and neq_th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   713
      have in_thread': "th' \<in> threads ((e # t) @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   714
        by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   715
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   716
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   717
      case (Set thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   718
      with Cons
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   719
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   720
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   721
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   722
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   723
    case Nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   724
    with assms
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   725
    show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   726
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   727
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   728
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   729
(*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   730
lemma runing_precond:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   731
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   732
  assumes th'_in: "th' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   733
  and eq_pv: "cntP s th' = cntV s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   734
  and neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   735
  shows "th' \<notin> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   736
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   737
  from runing_precond_pre[OF th'_in eq_pv neq_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   738
  have h1: "th' \<in> threads (t @ s)"  and h2: "cntP (t @ s) th' = cntV (t @ s) th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   739
  from pv_blocked[OF h1 neq_th' h2] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   740
  show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   741
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   742
*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   743
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   744
lemma runing_precond:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   745
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   746
  assumes th'_in: "th' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   747
  and neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   748
  and is_runing: "th' \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   749
  shows "cntP s th' > cntV s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   750
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   751
  have "cntP s th' \<noteq> cntV s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   752
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   753
    assume eq_pv: "cntP s th' = cntV s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   754
    from runing_precond_pre[OF th'_in eq_pv neq_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   755
    have h1: "th' \<in> threads (t @ s)"  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   756
      and h2: "cntP (t @ s) th' = cntV (t @ s) th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   757
    from pv_blocked[OF h1 neq_th' h2] have " th' \<notin> runing (t @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   758
    with is_runing show "False" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   759
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   760
  moreover from cnp_cnv_cncs[OF vt_s, of th'] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   761
  have "cntV s th' \<le> cntP s th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   762
  ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   763
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   764
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   765
lemma moment_blocked_pre:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   766
  assumes neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   767
  and th'_in: "th' \<in> threads ((moment i t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   768
  and eq_pv: "cntP ((moment i t)@s) th' = cntV ((moment i t)@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   769
  shows "cntP ((moment (i+j) t)@s) th' = cntV ((moment (i+j) t)@s) th' \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   770
         th' \<in> threads ((moment (i+j) t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   771
proof(induct j)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   772
  case (Suc k)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   773
  show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   774
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   775
    { assume True: "Suc (i+k) \<le> length t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   776
      from moment_head [OF this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   777
      obtain e where
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   778
        eq_me: "moment (Suc(i+k)) t = e#(moment (i+k) t)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   779
        by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   780
      from red_moment[of "Suc(i+k)"]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   781
      and eq_me have "extend_highest_set s' th prio (e # moment (i + k) t)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   782
      hence vt_e: "vt step (e#(moment (i + k) t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   783
        by (unfold extend_highest_set_def extend_highest_set_axioms_def 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   784
                          highest_set_def s_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   785
      have not_runing': "th' \<notin>  runing (moment (i + k) t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   786
      proof(unfold s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   787
        show "th' \<notin> runing (moment (i + k) t @ Set th prio # s')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   788
        proof(rule extend_highest_set.pv_blocked)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   789
          from Suc show "th' \<in> threads (moment (i + k) t @ Set th prio # s')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   790
            by (simp add:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   791
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   792
          from neq_th' show "th' \<noteq> th" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   793
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   794
          from red_moment show "extend_highest_set s' th prio (moment (i + k) t)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   795
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   796
          from Suc show "cntP (moment (i + k) t @ Set th prio # s') th' =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   797
            cntV (moment (i + k) t @ Set th prio # s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   798
            by (auto simp:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   799
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   800
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   801
      from step_back_step[OF vt_e]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   802
      have "step ((moment (i + k) t)@s) e" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   803
      hence "cntP (e#(moment (i + k) t)@s) th' = cntV (e#(moment (i + k) t)@s) th' \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   804
        th' \<in> threads (e#(moment (i + k) t)@s)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   805
        "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   806
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   807
        case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   808
        with Suc show ?thesis by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   809
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   810
        case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   811
        moreover have "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   812
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   813
          have "thread \<in> runing (moment (i + k) t @ s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   814
          moreover note not_runing'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   815
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   816
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   817
        moreover note Suc 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   818
        ultimately show ?thesis by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   819
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   820
        case (thread_P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   821
        moreover have "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   822
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   823
          have "thread \<in> runing (moment (i + k) t @ s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   824
          moreover note not_runing'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   825
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   826
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   827
        moreover note Suc 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   828
        ultimately show ?thesis by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   829
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   830
        case (thread_V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   831
        moreover have "thread \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   832
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   833
          have "thread \<in> runing (moment (i + k) t @ s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   834
          moreover note not_runing'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   835
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   836
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   837
        moreover note Suc 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   838
        ultimately show ?thesis by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   839
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   840
        case (thread_set thread prio')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   841
        with Suc show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   842
          by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   843
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   844
      with eq_me have ?thesis using eq_me by auto 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   845
    } note h = this
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   846
    show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   847
    proof(cases "Suc (i+k) \<le> length t")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   848
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   849
      from h [OF this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   850
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   851
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   852
      with moment_ge
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   853
      have eq_m: "moment (i + Suc k) t = moment (i+k) t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   854
      with Suc show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   855
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   856
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   857
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   858
  case 0
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   859
  from assms show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   860
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   861
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   862
lemma moment_blocked:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   863
  assumes neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   864
  and th'_in: "th' \<in> threads ((moment i t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   865
  and eq_pv: "cntP ((moment i t)@s) th' = cntV ((moment i t)@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   866
  and le_ij: "i \<le> j"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   867
  shows "cntP ((moment j t)@s) th' = cntV ((moment j t)@s) th' \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   868
         th' \<in> threads ((moment j t)@s) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   869
         th' \<notin> runing ((moment j t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   870
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   871
  from moment_blocked_pre [OF neq_th' th'_in eq_pv, of "j-i"] and le_ij
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   872
  have h1: "cntP ((moment j t)@s) th' = cntV ((moment j t)@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   873
    and h2: "th' \<in> threads ((moment j t)@s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   874
  with extend_highest_set.pv_blocked [OF  red_moment [of j], folded s_def, OF h2 neq_th' h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   875
  show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   876
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   877
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   878
lemma runing_inversion_1:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   879
  assumes neq_th': "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   880
  and runing': "th' \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   881
  shows "th' \<in> threads s \<and> cntV s th' < cntP s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   882
proof(cases "th' \<in> threads s")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   883
  case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   884
  with runing_precond [OF this neq_th' runing'] show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   885
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   886
  case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   887
  let ?Q = "\<lambda> t. th' \<in> threads (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   888
  let ?q = "moment 0 t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   889
  from moment_eq and False have not_thread: "\<not> ?Q ?q" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   890
  from runing' have "th' \<in> threads (t@s)" by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   891
  from p_split_gen [of ?Q, OF this not_thread]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   892
  obtain i where lt_its: "i < length t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   893
    and le_i: "0 \<le> i"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   894
    and pre: " th' \<notin> threads (moment i t @ s)" (is "th' \<notin> threads ?pre")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   895
    and post: "(\<forall>i'>i. th' \<in> threads (moment i' t @ s))" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   896
  from lt_its have "Suc i \<le> length t" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   897
  from moment_head[OF this] obtain e where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   898
   eq_me: "moment (Suc i) t = e # moment i t" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   899
  from red_moment[of "Suc i"] and eq_me
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   900
  have "extend_highest_set s' th prio (e # moment i t)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   901
  hence vt_e: "vt step (e#(moment i t)@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   902
    by (unfold extend_highest_set_def extend_highest_set_axioms_def 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   903
      highest_set_def s_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   904
  from step_back_step[OF this] have stp_i: "step (moment i t @ s) e" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   905
  from post[rule_format, of "Suc i"] and eq_me 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   906
  have not_in': "th' \<in> threads (e # moment i t@s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   907
  from create_pre[OF stp_i pre this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   908
  obtain prio where eq_e: "e = Create th' prio" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   909
  have "cntP (moment i t@s) th' = cntV (moment i t@s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   910
  proof(rule cnp_cnv_eq)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   911
    from step_back_vt [OF vt_e] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   912
    show "vt step (moment i t @ s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   913
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   914
    from eq_e and stp_i 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   915
    have "step (moment i t @ s) (Create th' prio)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   916
    thus "th' \<notin> threads (moment i t @ s)" by (cases, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   917
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   918
  with eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   919
  have "cntP ((e#moment i t)@s) th' = cntV ((e#moment i t)@s) th'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   920
    by (simp add:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   921
  with eq_me[symmetric]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   922
  have h1: "cntP (moment (Suc i) t @ s) th' = cntV (moment (Suc i) t@ s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   923
    by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   924
  from eq_e have "th' \<in> threads ((e#moment i t)@s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   925
  with eq_me [symmetric]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   926
  have h2: "th' \<in> threads (moment (Suc i) t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   927
  from moment_blocked [OF neq_th' h2 h1, of "length t"] and lt_its
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   928
  and moment_ge
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   929
  have "th' \<notin> runing (t @ s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   930
  with runing'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   931
  show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   932
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   933
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   934
lemma runing_inversion_2:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   935
  assumes runing': "th' \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   936
  shows "th' = th \<or> (th' \<noteq> th \<and> th' \<in> threads s \<and> cntV s th' < cntP s th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   937
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   938
  from runing_inversion_1[OF _ runing']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   939
  show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   940
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   941
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   942
lemma live: "runing (t@s) \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   943
proof(cases "th \<in> runing (t@s)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   944
  case True thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   945
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   946
  case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   947
  then have not_ready: "th \<notin> readys (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   948
    apply (unfold runing_def, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   949
            insert th_cp_max max_cp_readys_threads[OF vt_t, symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   950
    by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   951
  from th_kept have "th \<in> threads (t@s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   952
  from th_chain_to_ready[OF vt_t this] and not_ready
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   953
  obtain th' where th'_in: "th' \<in> readys (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   954
    and dp: "(Th th, Th th') \<in> (depend (t @ s))\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   955
  have "th' \<in> runing (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   956
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   957
    have "cp (t @ s) th' = Max (cp (t @ s) ` readys (t @ s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   958
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   959
      have " Max ((\<lambda>th. preced th (t @ s)) ` ({th'} \<union> dependents (wq (t @ s)) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   960
               preced th (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   961
      proof(rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   962
        fix y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   963
        assume "y \<in> (\<lambda>th. preced th (t @ s)) ` ({th'} \<union> dependents (wq (t @ s)) th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   964
        then obtain th1 where
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   965
          h1: "th1 = th' \<or> th1 \<in>  dependents (wq (t @ s)) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   966
          and eq_y: "y = preced th1 (t@s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   967
        show "y \<le> preced th (t @ s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   968
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   969
          from max_preced
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   970
          have "preced th (t @ s) = Max ((\<lambda>th'. preced th' (t @ s)) ` threads (t @ s))" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   971
          moreover have "y \<le> \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   972
          proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   973
            from h1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   974
            have "th1 \<in> threads (t@s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   975
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   976
              assume "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   977
              with th'_in show ?thesis by (simp add:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   978
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   979
              assume "th1 \<in> dependents (wq (t @ s)) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   980
              with dependents_threads [OF vt_t]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   981
              show "th1 \<in> threads (t @ s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   982
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   983
            with eq_y show " y \<in> (\<lambda>th'. preced th' (t @ s)) ` threads (t @ s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   984
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   985
            from finite_threads[OF vt_t]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   986
            show "finite ((\<lambda>th'. preced th' (t @ s)) ` threads (t @ s))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   987
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   988
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   989
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   990
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   991
        from finite_threads[OF vt_t] dependents_threads [OF vt_t, of th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   992
        show "finite ((\<lambda>th. preced th (t @ s)) ` ({th'} \<union> dependents (wq (t @ s)) th'))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   993
          by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   994
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   995
        from dp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   996
        have "th \<in> dependents (wq (t @ s)) th'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   997
          by (unfold cs_dependents_def, auto simp:eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   998
        thus "preced th (t @ s) \<in> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   999
                (\<lambda>th. preced th (t @ s)) ` ({th'} \<union> dependents (wq (t @ s)) th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1000
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1001
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1002
      moreover have "\<dots> = Max (cp (t @ s) ` readys (t @ s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1003
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1004
        from max_preced and max_cp_eq[OF vt_t, symmetric]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1005
        have "preced th (t @ s) = Max (cp (t @ s) ` threads (t @ s))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1006
        with max_cp_readys_threads[OF vt_t] show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1007
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1008
      ultimately show ?thesis by (unfold cp_eq_cpreced cpreced_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1009
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1010
    with th'_in show ?thesis by (auto simp:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1011
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1012
  thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1013
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1014
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1015
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1016
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1017
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1018
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1019