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