prio/PrioG.thy
author urbanc
Mon, 13 Feb 2012 15:35:08 +0000
changeset 312 09281ccb31bd
parent 309 e44c4055d430
child 333 813e7257c7c3
permissions -rw-r--r--
added implementation section
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     1
theory PrioG
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
     2
imports PrioGDef 
262
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
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
     5
lemma runing_ready: 
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
     6
  shows "runing s \<subseteq> readys s"
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
     7
  unfolding runing_def readys_def
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
     8
  by auto 
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
     9
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
    10
lemma readys_threads:
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
    11
  shows "readys s \<subseteq> threads s"
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
    12
  unfolding readys_def
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
    13
  by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    14
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    15
lemma wq_v_neq:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    16
   "cs \<noteq> cs' \<Longrightarrow> wq (V thread cs#s) cs' = wq s cs'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    17
  by (auto simp:wq_def Let_def cp_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    18
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    19
lemma wq_distinct: "vt s \<Longrightarrow> distinct (wq s cs)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    20
proof(erule_tac vt.induct, simp add:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    21
  fix s e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    22
  assume h1: "step s e"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    23
  and h2: "distinct (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    24
  thus "distinct (wq (e # s) cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    25
  proof(induct rule:step.induct, auto simp: wq_def Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    26
    fix thread s
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    27
    assume h1: "(Cs cs, Th thread) \<notin> (depend s)\<^sup>+"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    28
      and h2: "thread \<in> set (wq_fun (schs s) cs)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    29
      and h3: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    30
    show "False" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    31
    proof -
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    32
      from h3 have "\<And> cs. thread \<in>  set (wq_fun (schs s) cs) \<Longrightarrow> 
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    33
                             thread = hd ((wq_fun (schs s) cs))" 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    34
        by (simp add:runing_def readys_def s_waiting_def wq_def)
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    35
      from this [OF h2] have "thread = hd (wq_fun (schs s) cs)" .
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    36
      with h2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    37
      have "(Cs cs, Th thread) \<in> (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    38
        by (simp add:s_depend_def s_holding_def wq_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    39
      with h1 show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    40
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    41
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    42
    fix thread s a list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    43
    assume dst: "distinct list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    44
    show "distinct (SOME q. distinct q \<and> set q = set list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    45
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    46
      from dst show  "distinct list \<and> set list = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    47
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    48
      fix q assume "distinct q \<and> set q = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    49
      thus "distinct q" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    50
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    51
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    52
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    53
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    54
lemma step_back_vt: "vt (e#s) \<Longrightarrow> vt s"
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    55
  by(ind_cases "vt (e#s)", simp)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    56
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    57
lemma step_back_step: "vt (e#s) \<Longrightarrow> step s e"
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    58
  by(ind_cases "vt (e#s)", simp)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    59
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    60
lemma block_pre: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    61
  fixes thread cs s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    62
  assumes vt_e: "vt (e#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    63
  and s_ni: "thread \<notin>  set (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    64
  and s_i: "thread \<in> set (wq (e#s) cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    65
  shows "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    66
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    67
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    68
  proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    69
    case (P th cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    70
    with assms
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    71
    show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    72
      by (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    73
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    74
    case (Create th prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    75
    with assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    76
      by (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    77
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    78
    case (Exit th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    79
    with assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    80
      by (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    81
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    82
    case (Set th prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    83
    with assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    84
      by (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    85
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    86
    case (V th cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    87
    with assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    88
      apply (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    89
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    90
      fix q qs
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    91
      assume h1: "thread \<notin> set (wq_fun (schs s) cs)"
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
    92
        and h2: "q # qs = wq_fun (schs s) cs"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    93
        and h3: "thread \<in> set (SOME q. distinct q \<and> set q = set qs)"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
    94
        and vt: "vt (V th cs # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    95
      from h1 and h2[symmetric] have "thread \<notin> set (q # qs)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    96
      moreover have "thread \<in> set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    97
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    98
        have "set (SOME q. distinct q \<and> set q = set qs) = set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    99
        proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   100
          from wq_distinct [OF step_back_vt[OF vt], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   101
          and h2[symmetric, folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   102
          show "distinct qs \<and> set qs = set qs" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   103
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   104
          fix x assume "distinct x \<and> set x = set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   105
          thus "set x = set qs" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   106
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   107
        with h3 show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   108
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   109
      ultimately show "False" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   110
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   111
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   112
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   113
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   114
lemma p_pre: "\<lbrakk>vt ((P thread cs)#s)\<rbrakk> \<Longrightarrow> 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   115
  thread \<in> runing s \<and> (Cs cs, Th thread)  \<notin> (depend s)^+"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   116
apply (ind_cases "vt ((P thread cs)#s)")
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   117
apply (ind_cases "step s (P thread cs)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   118
by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   119
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   120
lemma abs1:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   121
  fixes e es
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   122
  assumes ein: "e \<in> set es"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   123
  and neq: "hd es \<noteq> hd (es @ [x])"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   124
  shows "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   125
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   126
  from ein have "es \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   127
  then obtain e ess where "es = e # ess" by (cases es, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   128
  with neq show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   129
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   130
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   131
lemma q_head: "Q (hd es) \<Longrightarrow> hd es = hd [th\<leftarrow>es . Q th]"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   132
  by (cases es, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   133
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   134
inductive_cases evt_cons: "vt (a#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   135
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   136
lemma abs2:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   137
  assumes vt: "vt (e#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   138
  and inq: "thread \<in> set (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   139
  and nh: "thread = hd (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   140
  and qt: "thread \<noteq> hd (wq (e#s) cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   141
  and inq': "thread \<in> set (wq (e#s) cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   142
  shows "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   143
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   144
  from assms show "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   145
    apply (cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   146
    apply ((simp split:if_splits add:Let_def wq_def)[1])+
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   147
    apply (insert abs1, fast)[1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   148
    apply (auto simp:wq_def simp:Let_def split:if_splits list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   149
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   150
    fix th qs
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   151
    assume vt: "vt (V th cs # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   152
      and th_in: "thread \<in> set (SOME q. distinct q \<and> set q = set qs)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   153
      and eq_wq: "wq_fun (schs s) cs = thread # qs"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   154
    show "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   155
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   156
      from wq_distinct[OF step_back_vt[OF vt], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   157
        and eq_wq[folded wq_def] have "distinct (thread#qs)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   158
      moreover have "thread \<in> set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   159
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   160
        have "set (SOME q. distinct q \<and> set q = set qs) = set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   161
        proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   162
          from wq_distinct [OF step_back_vt[OF vt], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   163
          and eq_wq [folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   164
          show "distinct qs \<and> set qs = set qs" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   165
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   166
          fix x assume "distinct x \<and> set x = set qs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   167
          thus "set x = set qs" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   168
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   169
        with th_in show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   170
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   171
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   172
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   173
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   174
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   175
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   176
lemma vt_moment: "\<And> t. \<lbrakk>vt s; t \<le> length s\<rbrakk> \<Longrightarrow> vt (moment t s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   177
proof(induct s, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   178
  fix a s t
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   179
  assume h: "\<And>t.\<lbrakk>vt s; t \<le> length s\<rbrakk> \<Longrightarrow> vt (moment t s)"
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   180
    and vt_a: "vt (a # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   181
    and le_t: "t \<le> length (a # s)"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   182
  show "vt (moment t (a # s))"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   183
  proof(cases "t = length (a#s)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   184
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   185
    from True have "moment t (a#s) = a#s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   186
    with vt_a show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   187
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   188
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   189
    with le_t have le_t1: "t \<le> length s" by simp
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   190
    from vt_a have "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   191
      by (erule_tac evt_cons, simp)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   192
    from h [OF this le_t1] have "vt (moment t s)" .
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   193
    moreover have "moment t (a#s) = moment t s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   194
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   195
      from moment_app [OF le_t1, of "[a]"] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   196
      show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   197
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   198
    ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   199
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   200
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   201
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   202
(* Wrong:
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   203
    lemma \<lbrakk>thread \<in> set (wq_fun cs1 s); thread \<in> set (wq_fun cs2 s)\<rbrakk> \<Longrightarrow> cs1 = cs2"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   204
*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   205
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   206
lemma waiting_unique_pre:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   207
  fixes cs1 cs2 s thread
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   208
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   209
  and h11: "thread \<in> set (wq s cs1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   210
  and h12: "thread \<noteq> hd (wq s cs1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   211
  assumes h21: "thread \<in> set (wq s cs2)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   212
  and h22: "thread \<noteq> hd (wq s cs2)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   213
  and neq12: "cs1 \<noteq> cs2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   214
  shows "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   215
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   216
  let "?Q cs s" = "thread \<in> set (wq s cs) \<and> thread \<noteq> hd (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   217
  from h11 and h12 have q1: "?Q cs1 s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   218
  from h21 and h22 have q2: "?Q cs2 s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   219
  have nq1: "\<not> ?Q cs1 []" by (simp add:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   220
  have nq2: "\<not> ?Q cs2 []" by (simp add:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   221
  from p_split [of "?Q cs1", OF q1 nq1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   222
  obtain t1 where lt1: "t1 < length s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   223
    and np1: "\<not>(thread \<in> set (wq (moment t1 s) cs1) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   224
        thread \<noteq> hd (wq (moment t1 s) cs1))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   225
    and nn1: "(\<forall>i'>t1. thread \<in> set (wq (moment i' s) cs1) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   226
             thread \<noteq> hd (wq (moment i' s) cs1))" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   227
  from p_split [of "?Q cs2", OF q2 nq2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   228
  obtain t2 where lt2: "t2 < length s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   229
    and np2: "\<not>(thread \<in> set (wq (moment t2 s) cs2) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   230
        thread \<noteq> hd (wq (moment t2 s) cs2))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   231
    and nn2: "(\<forall>i'>t2. thread \<in> set (wq (moment i' s) cs2) \<and>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   232
             thread \<noteq> hd (wq (moment i' s) cs2))" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   233
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   234
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   235
    { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   236
      assume lt12: "t1 < t2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   237
      let ?t3 = "Suc t2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   238
      from lt2 have le_t3: "?t3 \<le> length s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   239
      from moment_plus [OF this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   240
      obtain e where eq_m: "moment ?t3 s = e#moment t2 s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   241
      have "t2 < ?t3" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   242
      from nn2 [rule_format, OF this] and eq_m
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   243
      have h1: "thread \<in> set (wq (e#moment t2 s) cs2)" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   244
        h2: "thread \<noteq> hd (wq (e#moment t2 s) cs2)" by auto
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   245
      have vt_e: "vt (e#moment t2 s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   246
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   247
        from vt_moment [OF vt le_t3]
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   248
        have "vt (moment ?t3 s)" .
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   249
        with eq_m show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   250
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   251
      have ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   252
      proof(cases "thread \<in> set (wq (moment t2 s) cs2)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   253
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   254
        from True and np2 have eq_th: "thread = hd (wq (moment t2 s) cs2)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   255
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   256
        from abs2 [OF vt_e True eq_th h2 h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   257
        show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   258
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   259
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   260
        from block_pre [OF vt_e False h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   261
        have "e = P thread cs2" .
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   262
        with vt_e have "vt ((P thread cs2)# moment t2 s)" by simp
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   263
        from p_pre [OF this] have "thread \<in> runing (moment t2 s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   264
        with runing_ready have "thread \<in> readys (moment t2 s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   265
        with nn1 [rule_format, OF lt12]
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   266
        show ?thesis  by (simp add:readys_def wq_def s_waiting_def, auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   267
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   268
    } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   269
      assume lt12: "t2 < t1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   270
      let ?t3 = "Suc t1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   271
      from lt1 have le_t3: "?t3 \<le> length s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   272
      from moment_plus [OF this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   273
      obtain e where eq_m: "moment ?t3 s = e#moment t1 s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   274
      have lt_t3: "t1 < ?t3" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   275
      from nn1 [rule_format, OF this] and eq_m
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   276
      have h1: "thread \<in> set (wq (e#moment t1 s) cs1)" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   277
        h2: "thread \<noteq> hd (wq (e#moment t1 s) cs1)" by auto
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   278
      have vt_e: "vt  (e#moment t1 s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   279
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   280
        from vt_moment [OF vt le_t3]
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   281
        have "vt (moment ?t3 s)" .
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   282
        with eq_m show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   283
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   284
      have ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   285
      proof(cases "thread \<in> set (wq (moment t1 s) cs1)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   286
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   287
        from True and np1 have eq_th: "thread = hd (wq (moment t1 s) cs1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   288
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   289
        from abs2 [OF vt_e True eq_th h2 h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   290
        show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   291
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   292
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   293
        from block_pre [OF vt_e False h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   294
        have "e = P thread cs1" .
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   295
        with vt_e have "vt ((P thread cs1)# moment t1 s)" by simp
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   296
        from p_pre [OF this] have "thread \<in> runing (moment t1 s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   297
        with runing_ready have "thread \<in> readys (moment t1 s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   298
        with nn2 [rule_format, OF lt12]
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   299
        show ?thesis  by (simp add:readys_def wq_def s_waiting_def, auto)
262
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
    } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   302
      assume eqt12: "t1 = t2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   303
      let ?t3 = "Suc t1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   304
      from lt1 have le_t3: "?t3 \<le> length s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   305
      from moment_plus [OF this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   306
      obtain e where eq_m: "moment ?t3 s = e#moment t1 s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   307
      have lt_t3: "t1 < ?t3" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   308
      from nn1 [rule_format, OF this] and eq_m
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   309
      have h1: "thread \<in> set (wq (e#moment t1 s) cs1)" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   310
        h2: "thread \<noteq> hd (wq (e#moment t1 s) cs1)" by auto
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   311
      have vt_e: "vt (e#moment t1 s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   312
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   313
        from vt_moment [OF vt le_t3]
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   314
        have "vt (moment ?t3 s)" .
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   315
        with eq_m show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   316
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   317
      have ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   318
      proof(cases "thread \<in> set (wq (moment t1 s) cs1)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   319
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   320
        from True and np1 have eq_th: "thread = hd (wq (moment t1 s) cs1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   321
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   322
        from abs2 [OF vt_e True eq_th h2 h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   323
        show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   324
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   325
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   326
        from block_pre [OF vt_e False h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   327
        have eq_e1: "e = P thread cs1" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   328
        have lt_t3: "t1 < ?t3" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   329
        with eqt12 have "t2 < ?t3" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   330
        from nn2 [rule_format, OF this] and eq_m and eqt12
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   331
        have h1: "thread \<in> set (wq (e#moment t2 s) cs2)" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   332
          h2: "thread \<noteq> hd (wq (e#moment t2 s) cs2)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   333
        show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   334
        proof(cases "thread \<in> set (wq (moment t2 s) cs2)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   335
          case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   336
          from True and np2 have eq_th: "thread = hd (wq (moment t2 s) cs2)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   337
            by auto
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   338
          from vt_e and eqt12 have "vt (e#moment t2 s)" by simp 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   339
          from abs2 [OF this True eq_th h2 h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   340
          show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   341
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   342
          case False
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   343
          have vt_e: "vt (e#moment t2 s)"
262
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 vt_moment [OF vt le_t3] eqt12
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   346
            have "vt (moment (Suc t2) s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   347
            with eq_m eqt12 show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   348
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   349
          from block_pre [OF vt_e False h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   350
          have "e = P thread cs2" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   351
          with eq_e1 neq12 show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   352
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   353
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   354
    } ultimately show ?thesis by arith
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   355
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   356
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   357
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   358
lemma waiting_unique:
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   359
  fixes s cs1 cs2
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   360
  assumes "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   361
  and "waiting s th cs1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   362
  and "waiting s th cs2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   363
  shows "cs1 = cs2"
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   364
using waiting_unique_pre prems
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   365
unfolding wq_def s_waiting_def
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   366
by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   367
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   368
(* not used *)
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   369
lemma held_unique:
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   370
  fixes s::"state"
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   371
  assumes "holding s th1 cs"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   372
  and "holding s th2 cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   373
  shows "th1 = th2"
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   374
using prems
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   375
unfolding s_holding_def
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   376
by auto
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
   377
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   378
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   379
lemma birthtime_lt: "th \<in> threads s \<Longrightarrow> birthtime th s < length s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   380
  apply (induct s, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   381
  by (case_tac a, auto split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   382
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   383
lemma birthtime_unique: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   384
  "\<lbrakk>birthtime th1 s = birthtime th2 s; th1 \<in> threads s; th2 \<in> threads s\<rbrakk>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   385
          \<Longrightarrow> th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   386
  apply (induct s, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   387
  by (case_tac a, auto split:if_splits dest:birthtime_lt)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   388
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   389
lemma preced_unique : 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   390
  assumes pcd_eq: "preced th1 s = preced th2 s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   391
  and th_in1: "th1 \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   392
  and th_in2: " th2 \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   393
  shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   394
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   395
  from pcd_eq have "birthtime th1 s = birthtime th2 s" by (simp add:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   396
  from birthtime_unique [OF this th_in1 th_in2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   397
  show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   398
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   399
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   400
lemma preced_linorder: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   401
  assumes neq_12: "th1 \<noteq> th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   402
  and th_in1: "th1 \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   403
  and th_in2: " th2 \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   404
  shows "preced th1 s < preced th2 s \<or> preced th1 s > preced th2 s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   405
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   406
  from preced_unique [OF _ th_in1 th_in2] and neq_12 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   407
  have "preced th1 s \<noteq> preced th2 s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   408
  thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   409
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   410
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   411
lemma unique_minus:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   412
  fixes x y z r
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   413
  assumes unique: "\<And> a b c. \<lbrakk>(a, b) \<in> r; (a, c) \<in> r\<rbrakk> \<Longrightarrow> b = c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   414
  and xy: "(x, y) \<in> r"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   415
  and xz: "(x, z) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   416
  and neq: "y \<noteq> z"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   417
  shows "(y, z) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   418
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   419
 from xz and neq show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   420
 proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   421
   case (base ya)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   422
   have "(x, ya) \<in> r" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   423
   from unique [OF xy this] have "y = ya" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   424
   with base show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   425
 next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   426
   case (step ya z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   427
   show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   428
   proof(cases "y = ya")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   429
     case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   430
     from step True show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   431
   next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   432
     case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   433
     from step False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   434
     show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   435
   qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   436
 qed
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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   439
lemma unique_base:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   440
  fixes r x y z
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   441
  assumes unique: "\<And> a b c. \<lbrakk>(a, b) \<in> r; (a, c) \<in> r\<rbrakk> \<Longrightarrow> b = c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   442
  and xy: "(x, y) \<in> r"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   443
  and xz: "(x, z) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   444
  and neq_yz: "y \<noteq> z"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   445
  shows "(y, z) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   446
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   447
  from xz neq_yz show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   448
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   449
    case (base ya)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   450
    from xy unique base show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   451
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   452
    case (step ya z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   453
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   454
    proof(cases "y = ya")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   455
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   456
      from True step show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   457
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   458
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   459
      from False step 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   460
      have "(y, ya) \<in> r\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   461
      with step show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   462
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   463
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   464
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   465
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   466
lemma unique_chain:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   467
  fixes r x y z
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   468
  assumes unique: "\<And> a b c. \<lbrakk>(a, b) \<in> r; (a, c) \<in> r\<rbrakk> \<Longrightarrow> b = c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   469
  and xy: "(x, y) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   470
  and xz: "(x, z) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   471
  and neq_yz: "y \<noteq> z"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   472
  shows "(y, z) \<in> r^+ \<or> (z, y) \<in> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   473
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   474
  from xy xz neq_yz show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   475
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   476
    case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   477
    have h1: "(x, y) \<in> r" and h2: "(x, z) \<in> r\<^sup>+" and h3: "y \<noteq> z" using base by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   478
    from unique_base [OF _ h1 h2 h3] and unique show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   479
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   480
    case (step y za)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   481
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   482
    proof(cases "y = z")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   483
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   484
      from True step show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   485
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   486
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   487
      from False step have "(y, z) \<in> r\<^sup>+ \<or> (z, y) \<in> r\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   488
      thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   489
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   490
        assume "(z, y) \<in> r\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   491
        with step have "(z, za) \<in> r\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   492
        thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   493
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   494
        assume h: "(y, z) \<in> r\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   495
        from step have yza: "(y, za) \<in> r" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   496
        from step have "za \<noteq> z" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   497
        from unique_minus [OF _ yza h this] and unique
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   498
        have "(za, z) \<in> r\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   499
        thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   500
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   501
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   502
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   503
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   504
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   505
lemma depend_set_unchanged: "(depend (Set th prio # s)) = depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   506
apply (unfold s_depend_def s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   507
by (simp add:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   508
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   509
lemma depend_create_unchanged: "(depend (Create th prio # s)) = depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   510
apply (unfold s_depend_def s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   511
by (simp add:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   512
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   513
lemma depend_exit_unchanged: "(depend (Exit th # s)) = depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   514
apply (unfold s_depend_def s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   515
by (simp add:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   516
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   517
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 step_v_hold_inv[elim_format]:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   520
  "\<And>c t. \<lbrakk>vt (V th cs # s); 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   521
  \<not> holding (wq s) t c; holding (wq (V th cs # s)) t c\<rbrakk> \<Longrightarrow> next_th s th cs t \<and> c = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   522
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   523
  fix c t
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   524
  assume vt: "vt (V th cs # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   525
    and nhd: "\<not> holding (wq s) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   526
    and hd: "holding (wq (V th cs # s)) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   527
  show "next_th s th cs t \<and> c = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   528
  proof(cases "c = cs")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   529
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   530
    with nhd hd show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   531
      by (unfold cs_holding_def wq_def, auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   532
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   533
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   534
    with step_back_step [OF vt] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   535
    have "step s (V th c)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   536
    hence "next_th s th cs t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   537
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   538
      assume "holding s th c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   539
      with nhd hd show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   540
        apply (unfold s_holding_def cs_holding_def wq_def next_th_def,
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   541
               auto simp:Let_def split:list.splits if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   542
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   543
          assume " hd (SOME q. distinct q \<and> q = []) \<in> set (SOME q. distinct q \<and> q = [])"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   544
          moreover have "\<dots> = set []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   545
          proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   546
            show "distinct [] \<and> [] = []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   547
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   548
            fix x assume "distinct x \<and> x = []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   549
            thus "set x = set []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   550
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   551
          ultimately show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   552
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   553
          assume " hd (SOME q. distinct q \<and> q = []) \<in> set (SOME q. distinct q \<and> q = [])"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   554
          moreover have "\<dots> = set []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   555
          proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   556
            show "distinct [] \<and> [] = []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   557
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   558
            fix x assume "distinct x \<and> x = []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   559
            thus "set x = set []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   560
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   561
          ultimately show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   562
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   563
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   564
    with True show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   565
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   566
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   567
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   568
lemma step_v_wait_inv[elim_format]:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   569
    "\<And>t c. \<lbrakk>vt (V th cs # s); \<not> waiting (wq (V th cs # s)) t c; waiting (wq s) t c
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   570
           \<rbrakk>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   571
          \<Longrightarrow> (next_th s th cs t \<and> cs = c)"
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
  fix t c 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   574
  assume vt: "vt (V th cs # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   575
    and nw: "\<not> waiting (wq (V th cs # s)) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   576
    and wt: "waiting (wq s) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   577
  show "next_th s th cs t \<and> cs = c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   578
  proof(cases "cs = c")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   579
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   580
    with nw wt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   581
      by (auto simp:cs_waiting_def wq_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   582
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   583
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   584
    from nw[folded True] wt[folded True]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   585
    have "next_th s th cs t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   586
      apply (unfold next_th_def, auto simp:cs_waiting_def wq_def Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   587
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   588
      fix a list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   589
      assume t_in: "t \<in> set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   590
        and t_ni: "t \<notin> set (SOME q. distinct q \<and> set q = set list)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   591
        and eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   592
      have " set (SOME q. distinct q \<and> set q = set list) = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   593
      proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   594
        from wq_distinct[OF step_back_vt[OF vt], of cs] and eq_wq[folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   595
        show "distinct list \<and> set list = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   596
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   597
        show "\<And>x. distinct x \<and> set x = set list \<Longrightarrow> set x = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   598
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   599
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   600
      with t_ni and t_in show "a = th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   601
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   602
      fix a list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   603
      assume t_in: "t \<in> set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   604
        and t_ni: "t \<notin> set (SOME q. distinct q \<and> set q = set list)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   605
        and eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   606
      have " set (SOME q. distinct q \<and> set q = set list) = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   607
      proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   608
        from wq_distinct[OF step_back_vt[OF vt], of cs] and eq_wq[folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   609
        show "distinct list \<and> set list = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   610
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   611
        show "\<And>x. distinct x \<and> set x = set list \<Longrightarrow> set x = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   612
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   613
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   614
      with t_ni and t_in show "t = hd (SOME q. distinct q \<and> set q = set list)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   615
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   616
      fix a list
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   617
      assume eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   618
      from step_back_step[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   619
      show "a = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   620
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   621
        assume "holding s th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   622
        with eq_wq show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   623
          by (unfold s_holding_def wq_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   624
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   625
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   626
    with True show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   627
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   628
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   629
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   630
lemma step_v_not_wait[consumes 3]:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   631
  "\<lbrakk>vt (V th cs # s); next_th s th cs t; waiting (wq (V th cs # s)) t cs\<rbrakk> \<Longrightarrow> False"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   632
  by (unfold next_th_def cs_waiting_def wq_def, auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   633
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   634
lemma step_v_release:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   635
  "\<lbrakk>vt (V th cs # s); holding (wq (V th cs # s)) th cs\<rbrakk> \<Longrightarrow> False"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   636
proof -
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   637
  assume vt: "vt (V th cs # s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   638
    and hd: "holding (wq (V th cs # s)) th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   639
  from step_back_step [OF vt] and hd
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   640
  show "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   641
  proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   642
    assume "holding (wq (V th cs # s)) th cs" and "holding s th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   643
    thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   644
      apply (unfold s_holding_def wq_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   645
      apply (auto simp:Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   646
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   647
      fix list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   648
      assume eq_wq[folded wq_def]: 
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   649
        "wq_fun (schs s) cs = hd (SOME q. distinct q \<and> set q = set list) # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   650
      and hd_in: "hd (SOME q. distinct q \<and> set q = set list)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   651
            \<in> set (SOME q. distinct q \<and> set q = set list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   652
      have "set (SOME q. distinct q \<and> set q = set list) = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   653
      proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   654
        from wq_distinct[OF step_back_vt[OF vt], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   655
        show "distinct list \<and> set list = set list" 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
        show "\<And>x. distinct x \<and> set x = set list \<Longrightarrow> set x = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   658
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   659
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   660
      moreover have "distinct  (hd (SOME q. distinct q \<and> set q = set list) # list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   661
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   662
        from wq_distinct[OF step_back_vt[OF vt], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   663
        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
      moreover note eq_wq and hd_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   666
      ultimately show "False" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   667
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   668
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   669
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   670
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   671
lemma step_v_get_hold:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   672
  "\<And>th'. \<lbrakk>vt (V th cs # s); \<not> holding (wq (V th cs # s)) th' cs; next_th s th cs th'\<rbrakk> \<Longrightarrow> False"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   673
  apply (unfold cs_holding_def next_th_def wq_def,
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   674
         auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   675
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   676
  fix rest
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   677
  assume vt: "vt (V th cs # s)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   678
    and eq_wq[folded wq_def]: " wq_fun (schs s) cs = th # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   679
    and nrest: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   680
    and ni: "hd (SOME q. distinct q \<and> set q = set rest)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   681
            \<notin> set (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   682
  have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   683
  proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   684
    from wq_distinct[OF step_back_vt[OF vt], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   685
    show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   686
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   687
    fix x assume "distinct x \<and> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   688
    hence "set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   689
    with nrest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   690
    show "x \<noteq> []" by (case_tac x, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   691
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   692
  with ni show "False" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   693
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   694
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   695
lemma step_v_release_inv[elim_format]:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   696
"\<And>c t. \<lbrakk>vt (V th cs # s); \<not> holding (wq (V th cs # s)) t c; holding (wq s) t c\<rbrakk> \<Longrightarrow> 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   697
  c = cs \<and> t = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   698
  apply (unfold cs_holding_def wq_def, auto simp:Let_def split:if_splits list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   699
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   700
    fix a list
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   701
    assume vt: "vt (V th cs # s)" and eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   702
    from step_back_step [OF vt] show "a = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   703
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   704
      assume "holding s th cs" with eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   705
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   706
        by (unfold s_holding_def wq_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   707
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   708
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   709
    fix a list
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   710
    assume vt: "vt (V th cs # s)" and eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   711
    from step_back_step [OF vt] show "a = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   712
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   713
      assume "holding s th cs" with eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   714
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   715
        by (unfold s_holding_def wq_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   716
    qed
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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   719
lemma step_v_waiting_mono:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   720
  "\<And>t c. \<lbrakk>vt (V th cs # s); waiting (wq (V th cs # s)) t c\<rbrakk> \<Longrightarrow> waiting (wq s) t c"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   721
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   722
  fix t c
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   723
  let ?s' = "(V th cs # s)"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   724
  assume vt: "vt ?s'" 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   725
    and wt: "waiting (wq ?s') t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   726
  show "waiting (wq s) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   727
  proof(cases "c = cs")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   728
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   729
    assume neq_cs: "c \<noteq> cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   730
    hence "waiting (wq ?s') t c = waiting (wq s) t c"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   731
      by (unfold cs_waiting_def wq_def, auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   732
    with wt show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   733
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   734
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   735
    with wt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   736
      apply (unfold cs_waiting_def wq_def, auto simp:Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   737
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   738
      fix a list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   739
      assume not_in: "t \<notin> set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   740
        and is_in: "t \<in> set (SOME q. distinct q \<and> set q = set list)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   741
        and eq_wq: "wq_fun (schs s) cs = a # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   742
      have "set (SOME q. distinct q \<and> set q = set list) = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   743
      proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   744
        from wq_distinct [OF step_back_vt[OF vt], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   745
        and eq_wq[folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   746
        show "distinct list \<and> set list = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   747
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   748
        fix x assume "distinct x \<and> set x = set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   749
        thus "set x = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   750
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   751
      with not_in is_in show "t = a" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   752
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   753
      fix list
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   754
      assume is_waiting: "waiting (wq (V th cs # s)) t cs"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
   755
      and eq_wq: "wq_fun (schs s) cs = t # list"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   756
      hence "t \<in> set list"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   757
        apply (unfold wq_def, auto simp:Let_def cs_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   758
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   759
        assume " t \<in> set (SOME q. distinct q \<and> set q = set list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   760
        moreover have "\<dots> = set list" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   761
        proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   762
          from wq_distinct [OF step_back_vt[OF vt], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   763
            and eq_wq[folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   764
          show "distinct list \<and> set list = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   765
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   766
          fix x assume "distinct x \<and> set x = set list" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   767
          thus "set x = set list" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   768
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   769
        ultimately show "t \<in> set list" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   770
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   771
      with eq_wq and wq_distinct [OF step_back_vt[OF vt], of cs, unfolded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   772
      show False 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
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   775
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   776
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   777
lemma step_depend_v:
289
a5dd2c966cbe attempt to fix problem by Xingyuan
urbanc
parents: 288
diff changeset
   778
fixes th::thread
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   779
assumes vt:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   780
  "vt (V th cs#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   781
shows "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   782
  depend (V th cs # s) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   783
  depend s - {(Cs cs, Th th)} -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   784
  {(Th th', Cs cs) |th'. next_th s th cs th'} \<union>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   785
  {(Cs cs, Th th') |th'.  next_th s th cs th'}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   786
  apply (insert vt, unfold s_depend_def) 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   787
  apply (auto split:if_splits list.splits simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   788
  apply (auto elim: step_v_waiting_mono step_v_hold_inv 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   789
              step_v_release step_v_wait_inv
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   790
              step_v_get_hold step_v_release_inv)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   791
  apply (erule_tac step_v_not_wait, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   792
  done
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   793
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   794
lemma step_depend_p:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   795
  "vt (P th cs#s) \<Longrightarrow>
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   796
  depend (P th cs # s) =  (if (wq s cs = []) then depend s \<union> {(Cs cs, Th th)}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   797
                                             else depend s \<union> {(Th th, Cs cs)})"
288
64c9f151acf5 changes by Xingyuan
urbanc
parents: 287
diff changeset
   798
  apply(simp only: s_depend_def wq_def)
64c9f151acf5 changes by Xingyuan
urbanc
parents: 287
diff changeset
   799
  apply (auto split:list.splits prod.splits simp:Let_def wq_def cs_waiting_def cs_holding_def)
287
440382eb6427 more on the specification section
urbanc
parents: 264
diff changeset
   800
  apply(case_tac "csa = cs", auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   801
  apply(fold wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   802
  apply(drule_tac step_back_step)
287
440382eb6427 more on the specification section
urbanc
parents: 264
diff changeset
   803
  apply(ind_cases " step s (P (hd (wq s cs)) cs)")
440382eb6427 more on the specification section
urbanc
parents: 264
diff changeset
   804
  apply(auto simp:s_depend_def wq_def cs_holding_def)
440382eb6427 more on the specification section
urbanc
parents: 264
diff changeset
   805
  done
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   806
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   807
lemma simple_A:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   808
  fixes A
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   809
  assumes h: "\<And> x y. \<lbrakk>x \<in> A; y \<in> A\<rbrakk> \<Longrightarrow> x = y"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   810
  shows "A = {} \<or> (\<exists> a. A = {a})"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   811
proof(cases "A = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   812
  case True thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   813
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   814
  case False then obtain a where "a \<in> A" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   815
  with h have "A = {a}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   816
  thus ?thesis by simp
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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   819
lemma depend_target_th: "(Th th, x) \<in> depend (s::state) \<Longrightarrow> \<exists> cs. x = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   820
  by (unfold s_depend_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   821
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   822
lemma acyclic_depend: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   823
  fixes s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   824
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   825
  shows "acyclic (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   826
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   827
  from vt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   828
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   829
    case (vt_cons s e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   830
    assume ih: "acyclic (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   831
      and stp: "step s e"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   832
      and vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   833
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   834
    proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   835
      case (Create th prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   836
      with ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   837
      show ?thesis by (simp add:depend_create_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   838
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   839
      case (Exit th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   840
      with ih show ?thesis by (simp add:depend_exit_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   841
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   842
      case (V th cs)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   843
      from V vt stp have vtt: "vt (V th cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   844
      from step_depend_v [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   845
      have eq_de: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   846
        "depend (e # s) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   847
            depend s - {(Cs cs, Th th)} - {(Th th', Cs cs) |th'. next_th s th cs th'} \<union>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   848
            {(Cs cs, Th th') |th'. next_th s th cs th'}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   849
        (is "?L = (?A - ?B - ?C) \<union> ?D") by (simp add:V)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   850
      from ih have ac: "acyclic (?A - ?B - ?C)" by (auto elim:acyclic_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   851
      from step_back_step [OF vtt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   852
      have "step s (V th cs)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   853
      thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   854
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   855
        assume "holding s th cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   856
        hence th_in: "th \<in> set (wq s cs)" and
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   857
          eq_hd: "th = hd (wq s cs)" unfolding s_holding_def wq_def by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   858
        then obtain rest where
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   859
          eq_wq: "wq s cs = th#rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   860
          by (cases "wq s cs", auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   861
        show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   862
        proof(cases "rest = []")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   863
          case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   864
          let ?th' = "hd (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   865
          from eq_wq False have eq_D: "?D = {(Cs cs, Th ?th')}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   866
            by (unfold next_th_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   867
          let ?E = "(?A - ?B - ?C)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   868
          have "(Th ?th', Cs cs) \<notin> ?E\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   869
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   870
            assume "(Th ?th', Cs cs) \<in> ?E\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   871
            hence " (Th ?th', Cs cs) \<in> ?E\<^sup>+" by (simp add: rtrancl_eq_or_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   872
            from tranclD [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   873
            obtain x where th'_e: "(Th ?th', x) \<in> ?E" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   874
            hence th_d: "(Th ?th', x) \<in> ?A" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   875
            from depend_target_th [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   876
            obtain cs' where eq_x: "x = Cs cs'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   877
            with th_d have "(Th ?th', Cs cs') \<in> ?A" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   878
            hence wt_th': "waiting s ?th' cs'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   879
              unfolding s_depend_def s_waiting_def cs_waiting_def wq_def by simp
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   880
            hence "cs' = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   881
            proof(rule waiting_unique [OF vt])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   882
              from eq_wq wq_distinct[OF vt, of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   883
              show "waiting s ?th' cs" 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   884
                apply (unfold s_waiting_def wq_def, auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   885
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   886
                assume hd_in: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> set rest"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   887
                and eq_wq: "wq_fun (schs s) cs = th # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   888
                have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   889
                proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   890
                  from wq_distinct[OF vt, of cs] and eq_wq
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   891
                  show "distinct rest \<and> set rest = set rest" unfolding wq_def by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   892
                next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   893
                  fix x assume "distinct x \<and> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   894
                  with False show "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   895
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   896
                hence "hd (SOME q. distinct q \<and> set q = set rest) \<in> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   897
                                  set (SOME q. distinct q \<and> set q = set rest)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   898
                moreover have "\<dots> = set rest" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   899
                proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   900
                  from wq_distinct[OF vt, of cs] and eq_wq
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   901
                  show "distinct rest \<and> set rest = set rest" unfolding wq_def by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   902
                next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   903
                  show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   904
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   905
                moreover note hd_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   906
                ultimately show "hd (SOME q. distinct q \<and> set q = set rest) = th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   907
              next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   908
                assume hd_in: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   909
                and eq_wq: "wq s cs = hd (SOME q. distinct q \<and> set q = set rest) # rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   910
                have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   911
                proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   912
                  from wq_distinct[OF vt, of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   913
                  show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   914
                next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   915
                  fix x assume "distinct x \<and> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   916
                  with False show "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   917
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   918
                hence "hd (SOME q. distinct q \<and> set q = set rest) \<in> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   919
                                  set (SOME q. distinct q \<and> set q = set rest)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   920
                moreover have "\<dots> = set rest" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   921
                proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   922
                  from wq_distinct[OF vt, of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   923
                  show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   924
                next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   925
                  show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   926
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   927
                moreover note hd_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   928
                ultimately show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   929
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   930
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   931
            with th'_e eq_x have "(Th ?th', Cs cs) \<in> ?E" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   932
            with False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   933
            show "False" by (auto simp: next_th_def eq_wq)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   934
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   935
          with acyclic_insert[symmetric] and ac
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   936
            and eq_de eq_D show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   937
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   938
          case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   939
          with eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   940
          have eq_D: "?D = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   941
            by (unfold next_th_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   942
          with eq_de ac
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   943
          show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   944
        qed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   945
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   946
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   947
    case (P th cs)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
   948
    from P vt stp have vtt: "vt (P th cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   949
    from step_depend_p [OF this] P
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   950
    have "depend (e # s) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   951
      (if wq s cs = [] then depend s \<union> {(Cs cs, Th th)} else 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   952
      depend s \<union> {(Th th, Cs cs)})" (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   953
      by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   954
    moreover have "acyclic ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   955
    proof(cases "wq s cs = []")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   956
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   957
      hence eq_r: "?R =  depend s \<union> {(Cs cs, Th th)}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   958
      have "(Th th, Cs cs) \<notin> (depend s)\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   959
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   960
        assume "(Th th, Cs cs) \<in> (depend s)\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   961
        hence "(Th th, Cs cs) \<in> (depend s)\<^sup>+" by (simp add: rtrancl_eq_or_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   962
        from tranclD2 [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   963
        obtain x where "(x, Cs cs) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   964
        with True show False by (auto simp:s_depend_def cs_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   965
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   966
      with acyclic_insert ih eq_r show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   967
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   968
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   969
      hence eq_r: "?R =  depend s \<union> {(Th th, Cs cs)}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   970
      have "(Cs cs, Th th) \<notin> (depend s)\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   971
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   972
        assume "(Cs cs, Th th) \<in> (depend s)\<^sup>*"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   973
        hence "(Cs cs, Th th) \<in> (depend s)\<^sup>+" by (simp add: rtrancl_eq_or_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   974
          moreover from step_back_step [OF vtt] have "step s (P th cs)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   975
          ultimately show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   976
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   977
            show " \<lbrakk>(Cs cs, Th th) \<in> (depend s)\<^sup>+; step s (P th cs)\<rbrakk> \<Longrightarrow> False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   978
              by (ind_cases "step s (P th cs)", simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   979
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   980
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   981
        with acyclic_insert ih eq_r show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   982
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   983
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   984
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   985
      case (Set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   986
      with ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   987
      thm depend_set_unchanged
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   988
      show ?thesis by (simp add:depend_set_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   989
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   990
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   991
    case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   992
    show "acyclic (depend ([]::state))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   993
      by (auto simp: s_depend_def cs_waiting_def 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   994
                      cs_holding_def wq_def acyclic_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   995
  qed
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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   998
lemma finite_depend: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   999
  fixes s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1000
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1001
  shows "finite (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1002
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1003
  from vt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1004
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1005
    case (vt_cons s e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1006
    assume ih: "finite (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1007
      and stp: "step s e"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1008
      and vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1009
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1010
    proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1011
      case (Create th prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1012
      with ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1013
      show ?thesis by (simp add:depend_create_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1014
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1015
      case (Exit th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1016
      with ih show ?thesis by (simp add:depend_exit_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1017
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1018
      case (V th cs)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1019
      from V vt stp have vtt: "vt (V th cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1020
      from step_depend_v [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1021
      have eq_de: "depend (e # s) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1022
                   depend s - {(Cs cs, Th th)} - {(Th th', Cs cs) |th'. next_th s th cs th'} \<union>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1023
                      {(Cs cs, Th th') |th'. next_th s th cs th'}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1024
"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1025
        (is "?L = (?A - ?B - ?C) \<union> ?D") by (simp add:V)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1026
      moreover from ih have ac: "finite (?A - ?B - ?C)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1027
      moreover have "finite ?D"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1028
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1029
        have "?D = {} \<or> (\<exists> a. ?D = {a})" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1030
          by (unfold next_th_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1031
        thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1032
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1033
          assume h: "?D = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1034
          show ?thesis by (unfold h, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1035
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1036
          assume "\<exists> a. ?D = {a}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1037
          thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1038
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1039
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1040
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1041
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1042
      case (P th cs)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1043
      from P vt stp have vtt: "vt (P th cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1044
      from step_depend_p [OF this] P
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1045
      have "depend (e # s) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1046
              (if wq s cs = [] then depend s \<union> {(Cs cs, Th th)} else 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1047
                                    depend s \<union> {(Th th, Cs cs)})" (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1048
        by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1049
      moreover have "finite ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1050
      proof(cases "wq s cs = []")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1051
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1052
        hence eq_r: "?R =  depend s \<union> {(Cs cs, Th th)}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1053
        with True and ih show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1054
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1055
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1056
        hence "?R = depend s \<union> {(Th th, Cs cs)}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1057
        with False and ih show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1058
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1059
      ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1060
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1061
      case (Set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1062
      with ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1063
      show ?thesis by (simp add:depend_set_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1064
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1065
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1066
    case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1067
    show "finite (depend ([]::state))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1068
      by (auto simp: s_depend_def cs_waiting_def 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1069
                   cs_holding_def wq_def acyclic_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1070
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1071
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1072
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1073
text {* Several useful lemmas *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1074
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1075
lemma wf_dep_converse: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1076
  fixes s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1077
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1078
  shows "wf ((depend s)^-1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1079
proof(rule finite_acyclic_wf_converse)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1080
  from finite_depend [OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1081
  show "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1082
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1083
  from acyclic_depend[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1084
  show "acyclic (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1085
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1086
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1087
lemma hd_np_in: "x \<in> set l \<Longrightarrow> hd l \<in> set l"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1088
by (induct l, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1089
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1090
lemma th_chasing: "(Th th, Cs cs) \<in> depend (s::state) \<Longrightarrow> \<exists> th'. (Cs cs, Th th') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1091
  by (auto simp:s_depend_def s_holding_def cs_holding_def cs_waiting_def wq_def dest:hd_np_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1092
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1093
lemma wq_threads: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1094
  fixes s cs
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1095
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1096
  and h: "th \<in> set (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1097
  shows "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1098
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1099
 from vt and h show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1100
  proof(induct arbitrary: th cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1101
    case (vt_cons s e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1102
    assume ih: "\<And>th cs. th \<in> set (wq s cs) \<Longrightarrow> th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1103
      and stp: "step s e"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1104
      and vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1105
      and h: "th \<in> set (wq (e # s) cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1106
    show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1107
    proof(cases e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1108
      case (Create th' prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1109
      with ih h show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1110
        by (auto simp:wq_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1111
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1112
      case (Exit th')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1113
      with stp ih h show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1114
        apply (auto simp:wq_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1115
        apply (ind_cases "step s (Exit th')")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1116
        apply (auto simp:runing_def readys_def s_holding_def s_waiting_def holdents_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1117
               s_depend_def s_holding_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1118
        by (fold wq_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1119
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1120
      case (V th' cs')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1121
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1122
      proof(cases "cs' = cs")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1123
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1124
        with h
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1125
        show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1126
          apply(unfold wq_def V, auto simp:Let_def V split:prod.splits, fold wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1127
          by (drule_tac ih, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1128
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1129
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1130
        from h
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1131
        show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1132
        proof(unfold V wq_def)
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1133
          assume th_in: "th \<in> set (wq_fun (schs (V th' cs' # s)) cs)" (is "th \<in> set ?l")
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1134
          show "th \<in> threads (V th' cs' # s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1135
          proof(cases "cs = cs'")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1136
            case False
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1137
            hence "?l = wq_fun (schs s) cs" by (simp add:Let_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1138
            with th_in have " th \<in> set (wq s cs)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1139
              by (fold wq_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1140
            from ih [OF this] show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1141
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1142
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1143
            show ?thesis
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1144
            proof(cases "wq_fun (schs s) cs'")
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1145
              case Nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1146
              with h V show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1147
                apply (auto simp:wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1148
                by (fold wq_def, drule_tac ih, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1149
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1150
              case (Cons a rest)
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1151
              assume eq_wq: "wq_fun (schs s) cs' = a # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1152
              with h V show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1153
                apply (auto simp:Let_def wq_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1154
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1155
                assume th_in: "th \<in> set (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1156
                have "set (SOME q. distinct q \<and> set q = set rest) = set rest" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1157
                proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1158
                  from wq_distinct[OF vt, of cs'] and eq_wq[folded wq_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1159
                  show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1160
                next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1161
                  show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1162
                    by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1163
                qed
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1164
                with eq_wq th_in have "th \<in> set (wq_fun (schs s) cs')" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1165
                from ih[OF this[folded wq_def]] show "th \<in> threads s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1166
              next
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1167
                assume th_in: "th \<in> set (wq_fun (schs s) cs)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1168
                from ih[OF this[folded wq_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1169
                show "th \<in> threads s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1170
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1171
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1172
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1173
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1174
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1175
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1176
      case (P th' cs')
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1177
      from h stp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1178
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1179
        apply (unfold P wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1180
        apply (auto simp:Let_def split:if_splits, fold wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1181
        apply (auto intro:ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1182
        apply(ind_cases "step s (P th' cs')")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1183
        by (unfold runing_def readys_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1184
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1185
      case (Set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1186
      with ih h show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1187
        by (auto simp:wq_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1188
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1189
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1190
    case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1191
    thus ?case by (auto simp:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1192
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1193
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1194
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1195
lemma range_in: "\<lbrakk>vt s; (Th th) \<in> Range (depend (s::state))\<rbrakk> \<Longrightarrow> th \<in> threads s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1196
  apply(unfold s_depend_def cs_waiting_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1197
  by (auto intro:wq_threads)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1198
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1199
lemma readys_v_eq:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1200
  fixes th thread cs rest
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1201
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1202
  and neq_th: "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1203
  and eq_wq: "wq s cs = thread#rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1204
  and not_in: "th \<notin>  set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1205
  shows "(th \<in> readys (V thread cs#s)) = (th \<in> readys s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1206
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1207
  from prems show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1208
    apply (auto simp:readys_def)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1209
    apply(simp add:s_waiting_def[folded wq_def])
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1210
    apply (erule_tac x = csa in allE)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1211
    apply (simp add:s_waiting_def wq_def Let_def split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1212
    apply (case_tac "csa = cs", simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1213
    apply (erule_tac x = cs in allE)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1214
    apply(auto simp add: s_waiting_def[folded wq_def] Let_def split: list.splits)
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1215
    apply(auto simp add: wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1216
    apply (auto simp:s_waiting_def wq_def Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1217
    proof -
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1218
       assume th_nin: "th \<notin> set rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1219
        and th_in: "th \<in> set (SOME q. distinct q \<and> set q = set rest)"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1220
        and eq_wq: "wq_fun (schs s) cs = thread # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1221
      have "set (SOME q. distinct q \<and> set q = set rest) = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1222
      proof(rule someI2)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1223
        from wq_distinct[OF vt, of cs, unfolded wq_def] and eq_wq[unfolded wq_def]
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1224
        show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1225
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1226
        show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1227
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1228
      with th_nin th_in show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1229
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1230
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1231
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1232
lemma chain_building:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1233
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1234
  shows "node \<in> Domain (depend s) \<longrightarrow> (\<exists> th'. th' \<in> readys s \<and> (node, Th th') \<in> (depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1235
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1236
  from wf_dep_converse [OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1237
  have h: "wf ((depend s)\<inverse>)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1238
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1239
  proof(induct rule:wf_induct [OF h])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1240
    fix x
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1241
    assume ih [rule_format]: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1242
      "\<forall>y. (y, x) \<in> (depend s)\<inverse> \<longrightarrow> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1243
           y \<in> Domain (depend s) \<longrightarrow> (\<exists>th'. th' \<in> readys s \<and> (y, Th th') \<in> (depend s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1244
    show "x \<in> Domain (depend s) \<longrightarrow> (\<exists>th'. th' \<in> readys s \<and> (x, Th th') \<in> (depend s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1245
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1246
      assume x_d: "x \<in> Domain (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1247
      show "\<exists>th'. th' \<in> readys s \<and> (x, Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1248
      proof(cases x)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1249
        case (Th th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1250
        from x_d Th obtain cs where x_in: "(Th th, Cs cs) \<in> depend s" by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1251
        with Th have x_in_r: "(Cs cs, x) \<in> (depend s)^-1" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1252
        from th_chasing [OF x_in] obtain th' where "(Cs cs, Th th') \<in> depend s" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1253
        hence "Cs cs \<in> Domain (depend s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1254
        from ih [OF x_in_r this] obtain th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1255
          where th'_ready: " th' \<in> readys s" and cs_in: "(Cs cs, Th th') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1256
        have "(x, Th th') \<in> (depend s)\<^sup>+" using Th x_in cs_in by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1257
        with th'_ready show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1258
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1259
        case (Cs cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1260
        from x_d Cs obtain th' where th'_d: "(Th th', x) \<in> (depend s)^-1" by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1261
        show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1262
        proof(cases "th' \<in> readys s")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1263
          case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1264
          from True and th'_d show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1265
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1266
          case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1267
          from th'_d and range_in [OF vt] have "th' \<in> threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1268
          with False have "Th th' \<in> Domain (depend s)" 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1269
            by (auto simp:readys_def wq_def s_waiting_def s_depend_def cs_waiting_def Domain_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1270
          from ih [OF th'_d this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1271
          obtain th'' where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1272
            th''_r: "th'' \<in> readys s" and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1273
            th''_in: "(Th th', Th th'') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1274
          from th'_d and th''_in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1275
          have "(x, Th th'') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1276
          with th''_r show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1277
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1278
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1279
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1280
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1281
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1282
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1283
lemma th_chain_to_ready:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1284
  fixes s th
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1285
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1286
  and th_in: "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1287
  shows "th \<in> readys s \<or> (\<exists> th'. th' \<in> readys s \<and> (Th th, Th th') \<in> (depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1288
proof(cases "th \<in> readys s")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1289
  case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1290
  thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1291
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1292
  case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1293
  from False and th_in have "Th th \<in> Domain (depend s)" 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1294
    by (auto simp:readys_def s_waiting_def s_depend_def wq_def cs_waiting_def Domain_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1295
  from chain_building [rule_format, OF vt this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1296
  show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1297
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1298
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1299
lemma waiting_eq: "waiting s th cs = waiting (wq s) th cs"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1300
  by  (unfold s_waiting_def cs_waiting_def wq_def, auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1301
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1302
lemma holding_eq: "holding (s::state) th cs = holding (wq s) th cs"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1303
  by (unfold s_holding_def wq_def cs_holding_def, simp)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1304
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1305
lemma holding_unique: "\<lbrakk>holding (s::state) th1 cs; holding s th2 cs\<rbrakk> \<Longrightarrow> th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1306
  by (unfold s_holding_def cs_holding_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1307
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1308
lemma unique_depend: "\<lbrakk>vt s; (n, n1) \<in> depend s; (n, n2) \<in> depend s\<rbrakk> \<Longrightarrow> n1 = n2"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1309
  apply(unfold s_depend_def, auto, fold waiting_eq holding_eq)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1310
  by(auto elim:waiting_unique holding_unique)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1311
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1312
lemma trancl_split: "(a, b) \<in> r^+ \<Longrightarrow> \<exists> c. (a, c) \<in> r"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1313
by (induct rule:trancl_induct, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1314
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1315
lemma dchain_unique:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1316
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1317
  and th1_d: "(n, Th th1) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1318
  and th1_r: "th1 \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1319
  and th2_d: "(n, Th th2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1320
  and th2_r: "th2 \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1321
  shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1322
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1323
  { assume neq: "th1 \<noteq> th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1324
    hence "Th th1 \<noteq> Th th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1325
    from unique_chain [OF _ th1_d th2_d this] and unique_depend [OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1326
    have "(Th th1, Th th2) \<in> (depend s)\<^sup>+ \<or> (Th th2, Th th1) \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1327
    hence "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1328
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1329
      assume "(Th th1, Th th2) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1330
      from trancl_split [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1331
      obtain n where dd: "(Th th1, n) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1332
      then obtain cs where eq_n: "n = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1333
        by (auto simp:s_depend_def s_holding_def cs_holding_def cs_waiting_def wq_def dest:hd_np_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1334
      from dd eq_n have "th1 \<notin> readys s"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1335
        by (auto simp:readys_def s_depend_def wq_def s_waiting_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1336
      with th1_r show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1337
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1338
      assume "(Th th2, Th th1) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1339
      from trancl_split [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1340
      obtain n where dd: "(Th th2, n) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1341
      then obtain cs where eq_n: "n = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1342
        by (auto simp:s_depend_def s_holding_def cs_holding_def cs_waiting_def wq_def dest:hd_np_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1343
      from dd eq_n have "th2 \<notin> readys s"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1344
        by (auto simp:readys_def wq_def s_depend_def s_waiting_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1345
      with th2_r show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1346
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1347
  } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1348
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1349
             
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1350
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1351
lemma step_holdents_p_add:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1352
  fixes th cs s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1353
  assumes vt: "vt (P th cs#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1354
  and "wq s cs = []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1355
  shows "holdents (P th cs#s) th = holdents s th \<union> {cs}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1356
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1357
  from prems show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1358
  unfolding  holdents_def step_depend_p[OF vt] by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1359
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1360
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1361
lemma step_holdents_p_eq:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1362
  fixes th cs s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1363
  assumes vt: "vt (P th cs#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1364
  and "wq s cs \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1365
  shows "holdents (P th cs#s) th = holdents s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1366
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1367
  from prems show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1368
  unfolding  holdents_def step_depend_p[OF vt] by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1369
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1370
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1371
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1372
lemma finite_holding:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1373
  fixes s th cs
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1374
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1375
  shows "finite (holdents s th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1376
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1377
  let ?F = "\<lambda> (x, y). the_cs x"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1378
  from finite_depend [OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1379
  have "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1380
  hence "finite (?F `(depend s))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1381
  moreover have "{cs . (Cs cs, Th th) \<in> depend s} \<subseteq> \<dots>" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1382
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1383
    { have h: "\<And> a A f. a \<in> A \<Longrightarrow> f a \<in> f ` A" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1384
      fix x assume "(Cs x, Th th) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1385
      hence "?F (Cs x, Th th) \<in> ?F `(depend s)" by (rule h)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1386
      moreover have "?F (Cs x, Th th) = x" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1387
      ultimately have "x \<in> (\<lambda>(x, y). the_cs x) ` depend s" by simp 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1388
    } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1389
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1390
  ultimately show ?thesis by (unfold holdents_def, auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1391
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1392
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1393
lemma cntCS_v_dec: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1394
  fixes s thread cs
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1395
  assumes vtv: "vt (V thread cs#s)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1396
  shows "(cntCS (V thread cs#s) thread + 1) = cntCS s thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1397
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1398
  from step_back_step[OF vtv]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1399
  have cs_in: "cs \<in> holdents s thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1400
    apply (cases, unfold holdents_def s_depend_def, simp)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1401
    by (unfold cs_holding_def s_holding_def wq_def, auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1402
  moreover have cs_not_in: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1403
    "(holdents (V thread cs#s) thread) = holdents s thread - {cs}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1404
    apply (insert wq_distinct[OF step_back_vt[OF vtv], of cs])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1405
    apply (unfold holdents_def, unfold step_depend_v[OF vtv],
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1406
            auto simp:next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1407
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1408
    fix rest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1409
    assume dst: "distinct (rest::thread list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1410
      and ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1411
    and hd_ni: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1412
    moreover have "set (SOME q. distinct q \<and> set q = set rest) = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1413
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1414
      from dst show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1415
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1416
      show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1417
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1418
    ultimately have "hd (SOME q. distinct q \<and> set q = set rest) \<notin> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1419
                     set (SOME q. distinct q \<and> set q = set rest)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1420
    moreover have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1421
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1422
      from dst show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1423
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1424
      fix x assume " distinct x \<and> set x = set rest" with ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1425
      show "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1426
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1427
    ultimately 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1428
    show "(Cs cs, Th (hd (SOME q. distinct q \<and> set q = set rest))) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1429
      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1430
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1431
    fix rest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1432
    assume dst: "distinct (rest::thread list)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1433
      and ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1434
    and hd_ni: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1435
    moreover have "set (SOME q. distinct q \<and> set q = set rest) = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1436
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1437
      from dst show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1438
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1439
      show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1440
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1441
    ultimately have "hd (SOME q. distinct q \<and> set q = set rest) \<notin> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1442
                     set (SOME q. distinct q \<and> set q = set rest)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1443
    moreover have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1444
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1445
      from dst show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1446
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1447
      fix x assume " distinct x \<and> set x = set rest" with ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1448
      show "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1449
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1450
    ultimately show "False" by auto 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1451
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1452
  ultimately 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1453
  have "holdents s thread = insert cs (holdents (V thread cs#s) thread)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1454
    by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1455
  moreover have "card \<dots> = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1456
                    Suc (card ((holdents (V thread cs#s) thread) - {cs}))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1457
  proof(rule card_insert)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1458
    from finite_holding [OF vtv]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1459
    show " finite (holdents (V thread cs # s) thread)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1460
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1461
  moreover from cs_not_in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1462
  have "cs \<notin> (holdents (V thread cs#s) thread)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1463
  ultimately show ?thesis by (simp add:cntCS_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1464
qed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1465
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1466
lemma cnp_cnv_cncs:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1467
  fixes s th
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1468
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1469
  shows "cntP s th = cntV s th + (if (th \<in> readys s \<or> th \<notin> threads s) 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1470
                                       then cntCS s th else cntCS s th + 1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1471
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1472
  from vt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1473
  proof(induct arbitrary:th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1474
    case (vt_cons s e)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1475
    assume vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1476
    and ih: "\<And>th. cntP s th  = cntV s th +
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1477
               (if (th \<in> readys s \<or> th \<notin> threads s) then cntCS s th else cntCS s th + 1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1478
    and stp: "step s e"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1479
    from stp show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1480
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1481
      case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1482
      assume eq_e: "e = Create thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1483
        and not_in: "thread \<notin> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1484
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1485
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1486
        { fix cs 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1487
          assume "thread \<in> set (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1488
          from wq_threads [OF vt this] have "thread \<in> threads s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1489
          with not_in have "False" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1490
        } with eq_e have eq_readys: "readys (e#s) = readys s \<union> {thread}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1491
          by (auto simp:readys_def threads.simps s_waiting_def 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1492
            wq_def cs_waiting_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1493
        from eq_e have eq_cnp: "cntP (e#s) th = cntP s th" by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1494
        from eq_e have eq_cnv: "cntV (e#s) th = cntV s th" by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1495
        have eq_cncs: "cntCS (e#s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1496
          unfolding cntCS_def holdents_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1497
          by (simp add:depend_create_unchanged eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1498
        { assume "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1499
          with eq_readys eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1500
          have "(th \<in> readys (e # s) \<or> th \<notin> threads (e # s)) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1501
                      (th \<in> readys (s) \<or> th \<notin> threads (s))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1502
            by (simp add:threads.simps)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1503
          with eq_cnp eq_cnv eq_cncs ih not_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1504
          have ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1505
        } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1506
          assume eq_th: "th = thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1507
          with not_in ih have " cntP s th  = cntV s th + cntCS s th" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1508
          moreover from eq_th and eq_readys have "th \<in> readys (e#s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1509
          moreover note eq_cnp eq_cnv eq_cncs
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1510
          ultimately have ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1511
        } ultimately show ?thesis by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1512
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1513
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1514
      case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1515
      assume eq_e: "e = Exit thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1516
      and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1517
      and no_hold: "holdents s thread = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1518
      from eq_e have eq_cnp: "cntP (e#s) th = cntP s th" by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1519
      from eq_e have eq_cnv: "cntV (e#s) th = cntV s th" by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1520
      have eq_cncs: "cntCS (e#s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1521
        unfolding cntCS_def holdents_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1522
        by (simp add:depend_exit_unchanged eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1523
      { assume "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1524
        with eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1525
        have "(th \<in> readys (e # s) \<or> th \<notin> threads (e # s)) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1526
          (th \<in> readys (s) \<or> th \<notin> threads (s))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1527
          apply (simp add:threads.simps readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1528
          apply (subst s_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1529
          apply (simp add:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1530
          apply (subst s_waiting_def, simp)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1531
          done
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1532
        with eq_cnp eq_cnv eq_cncs ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1533
        have ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1534
      } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1535
        assume eq_th: "th = thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1536
        with ih is_runing have " cntP s th = cntV s th + cntCS s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1537
          by (simp add:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1538
        moreover from eq_th eq_e have "th \<notin> threads (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1539
          by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1540
        moreover note eq_cnp eq_cnv eq_cncs
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1541
        ultimately have ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1542
      } ultimately show ?thesis by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1543
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1544
      case (thread_P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1545
      assume eq_e: "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1546
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1547
        and no_dep: "(Cs cs, Th thread) \<notin> (depend s)\<^sup>+"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1548
      from prems have vtp: "vt (P thread cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1549
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1550
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1551
        { have hh: "\<And> A B C. (B = C) \<Longrightarrow> (A \<and> B) = (A \<and> C)" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1552
          assume neq_th: "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1553
          with eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1554
          have eq_readys: "(th \<in> readys (e#s)) = (th \<in> readys (s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1555
            apply (simp add:readys_def s_waiting_def wq_def Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1556
            apply (rule_tac hh, clarify)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1557
            apply (intro iffI allI, clarify)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1558
            apply (erule_tac x = csa in allE, auto)
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1559
            apply (subgoal_tac "wq_fun (schs s) cs \<noteq> []", auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1560
            apply (erule_tac x = cs in allE, auto)
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1561
            by (case_tac "(wq_fun (schs s) cs)", auto)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1562
          moreover from neq_th eq_e have "cntCS (e # s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1563
            apply (simp add:cntCS_def holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1564
            by (unfold  step_depend_p [OF vtp], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1565
          moreover from eq_e neq_th have "cntP (e # s) th = cntP s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1566
            by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1567
          moreover from eq_e neq_th have "cntV (e#s) th = cntV s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1568
            by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1569
          moreover from eq_e neq_th have "threads (e#s) = threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1570
          moreover note ih [of th] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1571
          ultimately have ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1572
        } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1573
          assume eq_th: "th = thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1574
          have ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1575
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1576
            from eq_e eq_th have eq_cnp: "cntP (e # s) th  = 1 + (cntP s th)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1577
              by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1578
            from eq_e eq_th have eq_cnv: "cntV (e#s) th = cntV s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1579
              by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1580
            show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1581
            proof (cases "wq s cs = []")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1582
              case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1583
              with is_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1584
              have "th \<in> readys (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1585
                apply (unfold eq_e wq_def, unfold readys_def s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1586
                apply (simp add: wq_def[symmetric] runing_def eq_th s_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1587
                by (auto simp:readys_def wq_def Let_def s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1588
              moreover have "cntCS (e # s) th = 1 + cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1589
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1590
                have "card {csa. csa = cs \<or> (Cs csa, Th thread) \<in> depend s} =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1591
                  Suc (card {cs. (Cs cs, Th thread) \<in> depend s})" (is "card ?L = Suc (card ?R)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1592
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1593
                  have "?L = insert cs ?R" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1594
                  moreover have "card \<dots> = Suc (card (?R - {cs}))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1595
                  proof(rule card_insert)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1596
                    from finite_holding [OF vt, of thread]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1597
                    show " finite {cs. (Cs cs, Th thread) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1598
                      by (unfold holdents_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1599
                  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1600
                  moreover have "?R - {cs} = ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1601
                  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1602
                    have "cs \<notin> ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1603
                    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1604
                      assume "cs \<in> {cs. (Cs cs, Th thread) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1605
                      with no_dep show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1606
                    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1607
                    thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1608
                  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1609
                  ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1610
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1611
                thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1612
                  apply (unfold eq_e eq_th cntCS_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1613
                  apply (simp add: holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1614
                  by (unfold step_depend_p [OF vtp], auto simp:True)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1615
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1616
              moreover from is_runing have "th \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1617
                by (simp add:runing_def eq_th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1618
              moreover note eq_cnp eq_cnv ih [of th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1619
              ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1620
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1621
              case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1622
              have eq_wq: "wq (e#s) cs = wq s cs @ [th]"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1623
                    by (unfold eq_th eq_e wq_def, auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1624
              have "th \<notin> readys (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1625
              proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1626
                assume "th \<in> readys (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1627
                hence "\<forall>cs. \<not> waiting (e # s) th cs" by (simp add:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1628
                from this[rule_format, of cs] have " \<not> waiting (e # s) th cs" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1629
                hence "th \<in> set (wq (e#s) cs) \<Longrightarrow> th = hd (wq (e#s) cs)" 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1630
                  by (simp add:s_waiting_def wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1631
                moreover from eq_wq have "th \<in> set (wq (e#s) cs)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1632
                ultimately have "th = hd (wq (e#s) cs)" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1633
                with eq_wq have "th = hd (wq s cs @ [th])" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1634
                hence "th = hd (wq s cs)" using False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1635
                with False eq_wq wq_distinct [OF vtp, of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1636
                show False by (fold eq_e, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1637
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1638
              moreover from is_runing have "th \<in> threads (e#s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1639
                by (unfold eq_e, auto simp:runing_def readys_def eq_th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1640
              moreover have "cntCS (e # s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1641
                apply (unfold cntCS_def holdents_def eq_e step_depend_p[OF vtp])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1642
                by (auto simp:False)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1643
              moreover note eq_cnp eq_cnv ih[of th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1644
              moreover from is_runing have "th \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1645
                by (simp add:runing_def eq_th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1646
              ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1647
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1648
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1649
        } ultimately show ?thesis by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1650
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1651
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1652
      case (thread_V thread cs)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1653
      from prems have vtv: "vt (V thread cs # s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1654
      assume eq_e: "e = V thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1655
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1656
        and hold: "holding s thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1657
      from hold obtain rest 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1658
        where eq_wq: "wq s cs = thread # rest"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1659
        by (case_tac "wq s cs", auto simp: wq_def s_holding_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1660
      have eq_threads: "threads (e#s) = threads s" by (simp add: eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1661
      have eq_set: "set (SOME q. distinct q \<and> set q = set rest) = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1662
      proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1663
        from wq_distinct[OF step_back_vt[OF vtv], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1664
        show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1665
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1666
        show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1667
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1668
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1669
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1670
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1671
        { assume eq_th: "th = thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1672
          from eq_th have eq_cnp: "cntP (e # s) th = cntP s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1673
            by (unfold eq_e, simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1674
          moreover from eq_th have eq_cnv: "cntV (e#s) th = 1 + cntV s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1675
            by (unfold eq_e, simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1676
          moreover from cntCS_v_dec [OF vtv] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1677
          have "cntCS (e # s) thread + 1 = cntCS s thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1678
            by (simp add:eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1679
          moreover from is_runing have rd_before: "thread \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1680
            by (unfold runing_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1681
          moreover have "thread \<in> readys (e # s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1682
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1683
            from is_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1684
            have "thread \<in> threads (e#s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1685
              by (unfold eq_e, auto simp:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1686
            moreover have "\<forall> cs1. \<not> waiting (e#s) thread cs1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1687
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1688
              fix cs1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1689
              { assume eq_cs: "cs1 = cs" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1690
                have "\<not> waiting (e # s) thread cs1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1691
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1692
                  from eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1693
                  have "thread \<notin> set (wq (e#s) cs1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1694
                    apply(unfold eq_e wq_def eq_cs s_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1695
                    apply (auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1696
                  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1697
                    assume "thread \<in> set (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1698
                    with eq_set have "thread \<in> set rest" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1699
                    with wq_distinct[OF step_back_vt[OF vtv], of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1700
                    and eq_wq show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1701
                  qed
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1702
                  thus ?thesis by (simp add:wq_def s_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1703
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1704
              } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1705
                assume neq_cs: "cs1 \<noteq> cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1706
                  have "\<not> waiting (e # s) thread cs1" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1707
                  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1708
                    from wq_v_neq [OF neq_cs[symmetric]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1709
                    have "wq (V thread cs # s) cs1 = wq s cs1" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1710
                    moreover have "\<not> waiting s thread cs1" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1711
                    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1712
                      from runing_ready and is_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1713
                      have "thread \<in> readys s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1714
                      thus ?thesis by (simp add:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1715
                    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1716
                    ultimately show ?thesis 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1717
                      by (auto simp:wq_def s_waiting_def eq_e)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1718
                  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1719
              } ultimately show "\<not> waiting (e # s) thread cs1" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1720
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1721
            ultimately show ?thesis by (simp add:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1722
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1723
          moreover note eq_th ih
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1724
          ultimately have ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1725
        } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1726
          assume neq_th: "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1727
          from neq_th eq_e have eq_cnp: "cntP (e # s) th = cntP s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1728
            by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1729
          from neq_th eq_e have eq_cnv: "cntV (e # s) th = cntV s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1730
            by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1731
          have ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1732
          proof(cases "th \<in> set rest")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1733
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1734
            have "(th \<in> readys (e # s)) = (th \<in> readys s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1735
              apply (insert step_back_vt[OF vtv])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1736
              by (unfold eq_e, rule readys_v_eq [OF _ neq_th eq_wq False], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1737
            moreover have "cntCS (e#s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1738
              apply (insert neq_th, unfold eq_e cntCS_def holdents_def step_depend_v[OF vtv], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1739
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1740
                have "{csa. (Cs csa, Th th) \<in> depend s \<or> csa = cs \<and> next_th s thread cs th} =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1741
                      {cs. (Cs cs, Th th) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1742
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1743
                  from False eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1744
                  have " next_th s thread cs th \<Longrightarrow> (Cs cs, Th th) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1745
                    apply (unfold next_th_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1746
                  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1747
                    assume ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1748
                      and ni: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1749
                      and eq_wq: "wq s cs = thread # rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1750
                    from eq_set ni have "hd (SOME q. distinct q \<and> set q = set rest) \<notin> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1751
                                  set (SOME q. distinct q \<and> set q = set rest)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1752
                                  " by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1753
                    moreover have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1754
                    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1755
                      from wq_distinct[OF step_back_vt[OF vtv], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1756
                      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1757
                    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1758
                      fix x assume "distinct x \<and> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1759
                      with ne show "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1760
                    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1761
                    ultimately show 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1762
                      "(Cs cs, Th (hd (SOME q. distinct q \<and> set q = set rest))) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1763
                      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1764
                  qed    
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1765
                  thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1766
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1767
                thus "card {csa. (Cs csa, Th th) \<in> depend s \<or> csa = cs \<and> next_th s thread cs th} =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1768
                             card {cs. (Cs cs, Th th) \<in> depend s}" by simp 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1769
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1770
            moreover note ih eq_cnp eq_cnv eq_threads
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1771
            ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1772
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1773
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1774
            assume th_in: "th \<in> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1775
            show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1776
            proof(cases "next_th s thread cs th")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1777
              case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1778
              with eq_wq and th_in have 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1779
                neq_hd: "th \<noteq> hd (SOME q. distinct q \<and> set q = set rest)" (is "th \<noteq> hd ?rest")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1780
                by (auto simp:next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1781
              have "(th \<in> readys (e # s)) = (th \<in> readys s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1782
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1783
                from eq_wq and th_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1784
                have "\<not> th \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1785
                  apply (auto simp:readys_def s_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1786
                  apply (rule_tac x = cs in exI, auto)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1787
                  by (insert wq_distinct[OF step_back_vt[OF vtv], of cs], auto simp add: wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1788
                moreover 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1789
                from eq_wq and th_in and neq_hd
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1790
                have "\<not> (th \<in> readys (e # s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1791
                  apply (auto simp:readys_def s_waiting_def eq_e wq_def Let_def split:list.splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1792
                  by (rule_tac x = cs in exI, auto simp:eq_set)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1793
                ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1794
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1795
              moreover have "cntCS (e#s) th = cntCS s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1796
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1797
                from eq_wq and  th_in and neq_hd
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1798
                have "(holdents (e # s) th) = (holdents s th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1799
                  apply (unfold eq_e step_depend_v[OF vtv], 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1800
                         auto simp:next_th_def eq_set s_depend_def holdents_def wq_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1801
                                   Let_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1802
                  by (insert wq_distinct[OF step_back_vt[OF vtv], of cs], auto simp:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1803
                thus ?thesis by (simp add:cntCS_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1804
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1805
              moreover note ih eq_cnp eq_cnv eq_threads
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1806
              ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1807
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1808
              case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1809
              let ?rest = " (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1810
              let ?t = "hd ?rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1811
              from True eq_wq th_in neq_th
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1812
              have "th \<in> readys (e # s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1813
                apply (auto simp:eq_e readys_def s_waiting_def wq_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1814
                        Let_def next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1815
              proof -
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1816
                assume eq_wq: "wq_fun (schs s) cs = thread # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1817
                  and t_in: "?t \<in> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1818
                show "?t \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1819
                proof(rule wq_threads[OF step_back_vt[OF vtv]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1820
                  from eq_wq and t_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1821
                  show "?t \<in> set (wq s cs)" by (auto simp:wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1822
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1823
              next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1824
                fix csa
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1825
                assume eq_wq: "wq_fun (schs s) cs = thread # rest"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1826
                  and t_in: "?t \<in> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1827
                  and neq_cs: "csa \<noteq> cs"
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1828
                  and t_in': "?t \<in>  set (wq_fun (schs s) csa)"
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1829
                show "?t = hd (wq_fun (schs s) csa)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1830
                proof -
294
bc5bf9e9ada2 renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents: 291
diff changeset
  1831
                  { assume neq_hd': "?t \<noteq> hd (wq_fun (schs s) csa)"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1832
                    from wq_distinct[OF step_back_vt[OF vtv], of cs] and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1833
                    eq_wq[folded wq_def] and t_in eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1834
                    have "?t \<noteq> thread" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1835
                    with eq_wq and t_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1836
                    have w1: "waiting s ?t cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1837
                      by (auto simp:s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1838
                    from t_in' neq_hd'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1839
                    have w2: "waiting s ?t csa"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1840
                      by (auto simp:s_waiting_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1841
                    from waiting_unique[OF step_back_vt[OF vtv] w1 w2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1842
                    and neq_cs have "False" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1843
                  } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1844
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1845
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1846
              moreover have "cntP s th = cntV s th + cntCS s th + 1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1847
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1848
                have "th \<notin> readys s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1849
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1850
                  from True eq_wq neq_th th_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1851
                  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1852
                    apply (unfold readys_def s_waiting_def, auto)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1853
                    by (rule_tac x = cs in exI, auto simp add: wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1854
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1855
                moreover have "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1856
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1857
                  from th_in eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1858
                  have "th \<in> set (wq s cs)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1859
                  from wq_threads [OF step_back_vt[OF vtv] this] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1860
                  show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1861
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1862
                ultimately show ?thesis using ih by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1863
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1864
              moreover from True neq_th have "cntCS (e # s) th = 1 + cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1865
                apply (unfold cntCS_def holdents_def eq_e step_depend_v[OF vtv], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1866
              proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1867
                show "card {csa. (Cs csa, Th th) \<in> depend s \<or> csa = cs} =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1868
                               Suc (card {cs. (Cs cs, Th th) \<in> depend s})"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1869
                  (is "card ?A = Suc (card ?B)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1870
                proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1871
                  have "?A = insert cs ?B" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1872
                  hence "card ?A = card (insert cs ?B)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1873
                  also have "\<dots> = Suc (card ?B)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1874
                  proof(rule card_insert_disjoint)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1875
                    have "?B \<subseteq> ((\<lambda> (x, y). the_cs x) ` depend s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1876
                      apply (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1877
                      by (rule_tac x = "(Cs x, Th th)" in bexI, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1878
                    with finite_depend[OF step_back_vt[OF vtv]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1879
                    show "finite {cs. (Cs cs, Th th) \<in> depend s}" by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1880
                  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1881
                    show "cs \<notin> {cs. (Cs cs, Th th) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1882
                    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1883
                      assume "cs \<in> {cs. (Cs cs, Th th) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1884
                      hence "(Cs cs, Th th) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1885
                      with True neq_th eq_wq show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1886
                        by (auto simp:next_th_def s_depend_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1887
                    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1888
                  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1889
                  finally show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1890
                qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1891
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1892
              moreover note eq_cnp eq_cnv
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1893
              ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1894
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1895
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1896
        } ultimately show ?thesis by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1897
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1898
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1899
      case (thread_set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1900
      assume eq_e: "e = Set thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1901
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1902
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1903
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1904
        from eq_e have eq_cnp: "cntP (e#s) th = cntP s th" by (simp add:cntP_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1905
        from eq_e have eq_cnv: "cntV (e#s) th = cntV s th" by (simp add:cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1906
        have eq_cncs: "cntCS (e#s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1907
          unfolding cntCS_def holdents_def
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1908
          by (simp add:depend_set_unchanged eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1909
        from eq_e have eq_readys: "readys (e#s) = readys s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1910
          by (simp add:readys_def cs_waiting_def s_waiting_def wq_def,
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1911
                  auto simp:Let_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1912
        { assume "th \<noteq> thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1913
          with eq_readys eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1914
          have "(th \<in> readys (e # s) \<or> th \<notin> threads (e # s)) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1915
                      (th \<in> readys (s) \<or> th \<notin> threads (s))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1916
            by (simp add:threads.simps)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1917
          with eq_cnp eq_cnv eq_cncs ih is_runing
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1918
          have ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1919
        } moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1920
          assume eq_th: "th = thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1921
          with is_runing ih have " cntP s th  = cntV s th + cntCS s th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1922
            by (unfold runing_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1923
          moreover from eq_th and eq_readys is_runing have "th \<in> readys (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1924
            by (simp add:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1925
          moreover note eq_cnp eq_cnv eq_cncs
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1926
          ultimately have ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1927
        } ultimately show ?thesis by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1928
      qed   
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1929
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1930
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1931
    case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1932
    show ?case 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1933
      by (unfold cntP_def cntV_def cntCS_def, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1934
        auto simp:count_def holdents_def s_depend_def wq_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1935
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1936
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1937
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1938
lemma not_thread_cncs:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1939
  fixes th s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1940
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1941
  and not_in: "th \<notin> threads s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1942
  shows "cntCS s th = 0"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1943
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1944
  from vt not_in show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1945
  proof(induct arbitrary:th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1946
    case (vt_cons s e th)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1947
    assume vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1948
      and ih: "\<And>th. th \<notin> threads s \<Longrightarrow> cntCS s th = 0"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1949
      and stp: "step s e"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1950
      and not_in: "th \<notin> threads (e # s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1951
    from stp show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1952
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1953
      case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1954
      assume eq_e: "e = Create thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1955
        and not_in': "thread \<notin> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1956
      have "cntCS (e # s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1957
        apply (unfold eq_e cntCS_def holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1958
        by (simp add:depend_create_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1959
      moreover have "th \<notin> threads s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1960
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1961
        from not_in eq_e show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1962
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1963
      moreover note ih ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1964
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1965
      case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1966
      assume eq_e: "e = Exit thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1967
      and nh: "holdents s thread = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1968
      have eq_cns: "cntCS (e # s) th = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1969
        apply (unfold eq_e cntCS_def holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1970
        by (simp add:depend_exit_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1971
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1972
      proof(cases "th = thread")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1973
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1974
        have "cntCS s th = 0" by (unfold cntCS_def, auto simp:nh True)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1975
        with eq_cns show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1976
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1977
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1978
        with not_in and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1979
        have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1980
        from ih[OF this] and eq_cns show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1981
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1982
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1983
      case (thread_P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1984
      assume eq_e: "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1985
      and is_runing: "thread \<in> runing s"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  1986
      from prems have vtp: "vt (P thread cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1987
      have neq_th: "th \<noteq> thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1988
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1989
        from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1990
        moreover from is_runing have "thread \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1991
          by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1992
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1993
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1994
      hence "cntCS (e # s) th  = cntCS s th "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1995
        apply (unfold cntCS_def holdents_def eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1996
        by (unfold step_depend_p[OF vtp], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1997
      moreover have "cntCS s th = 0"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1998
      proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1999
        from not_in eq_e show "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2000
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2001
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2002
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2003
      case (thread_V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2004
      assume eq_e: "e = V thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2005
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2006
        and hold: "holding s thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2007
      have neq_th: "th \<noteq> thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2008
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2009
        from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2010
        moreover from is_runing have "thread \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2011
          by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2012
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2013
      qed
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2014
      from prems have vtv: "vt (V thread cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2015
      from hold obtain rest 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2016
        where eq_wq: "wq s cs = thread # rest"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2017
        by (case_tac "wq s cs", auto simp: wq_def s_holding_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2018
      from not_in eq_e eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2019
      have "\<not> next_th s thread cs th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2020
        apply (auto simp:next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2021
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2022
        assume ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2023
          and ni: "hd (SOME q. distinct q \<and> set q = set rest) \<notin> threads s" (is "?t \<notin> threads s")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2024
        have "?t \<in> set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2025
        proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2026
          from wq_distinct[OF step_back_vt[OF vtv], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2027
          show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2028
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2029
          fix x assume "distinct x \<and> set x = set rest" with ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2030
          show "hd x \<in> set rest" by (cases x, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2031
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2032
        with eq_wq have "?t \<in> set (wq s cs)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2033
        from wq_threads[OF step_back_vt[OF vtv], OF this] and ni
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2034
        show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2035
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2036
      moreover note neq_th eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2037
      ultimately have "cntCS (e # s) th  = cntCS s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2038
        by (unfold eq_e cntCS_def holdents_def step_depend_v[OF vtv], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2039
      moreover have "cntCS s th = 0"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2040
      proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2041
        from not_in eq_e show "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2042
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2043
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2044
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2045
      case (thread_set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2046
      print_facts
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2047
      assume eq_e: "e = Set thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2048
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2049
      from not_in and eq_e have "th \<notin> threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2050
      from ih [OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2051
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2052
        apply (unfold eq_e cntCS_def holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2053
        by (simp add:depend_set_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2054
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2055
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2056
      case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2057
      show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2058
      by (unfold cntCS_def, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2059
        auto simp:count_def holdents_def s_depend_def wq_def cs_holding_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2060
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2061
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2062
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2063
lemma eq_waiting: "waiting (wq (s::state)) th cs = waiting s th cs"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2064
  by (auto simp:s_waiting_def cs_waiting_def wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2065
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2066
lemma dm_depend_threads:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2067
  fixes th s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2068
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2069
  and in_dom: "(Th th) \<in> Domain (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2070
  shows "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2071
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2072
  from in_dom obtain n where "(Th th, n) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2073
  moreover from depend_target_th[OF this] obtain cs where "n = Cs cs" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2074
  ultimately have "(Th th, Cs cs) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2075
  hence "th \<in> set (wq s cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2076
    by (unfold s_depend_def, auto simp:cs_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2077
  from wq_threads [OF vt this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2078
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2079
290
6a6d0bd16035 more on paper
urbanc
parents: 289
diff changeset
  2080
lemma cp_eq_cpreced: "cp s th = cpreced (wq s) s th"
291
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2081
unfolding cp_def wq_def
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2082
apply(induct s rule: schs.induct)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2083
apply(simp add: Let_def cpreced_initial)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2084
apply(simp add: Let_def)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2085
apply(simp add: Let_def)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2086
apply(simp add: Let_def)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2087
apply(subst (2) schs.simps)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2088
apply(simp add: Let_def)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2089
apply(subst (2) schs.simps)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2090
apply(simp add: Let_def)
5ef9f6ebe827 more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents: 290
diff changeset
  2091
done
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2092
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2093
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2094
lemma runing_unique:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2095
  fixes th1 th2 s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2096
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2097
  and runing_1: "th1 \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2098
  and runing_2: "th2 \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2099
  shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2100
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2101
  from runing_1 and runing_2 have "cp s th1 = cp s th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2102
    by (unfold runing_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2103
  hence eq_max: "Max ((\<lambda>th. preced th s) ` ({th1} \<union> dependents (wq s) th1)) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2104
                 Max ((\<lambda>th. preced th s) ` ({th2} \<union> dependents (wq s) th2))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2105
    (is "Max (?f ` ?A) = Max (?f ` ?B)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2106
    by (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2107
  obtain th1' where th1_in: "th1' \<in> ?A" and eq_f_th1: "?f th1' = Max (?f ` ?A)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2108
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2109
    have h1: "finite (?f ` ?A)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2110
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2111
      have "finite ?A" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2112
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2113
        have "finite (dependents (wq s) th1)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2114
        proof-
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2115
          have "finite {th'. (Th th', Th th1) \<in> (depend (wq s))\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2116
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2117
            let ?F = "\<lambda> (x, y). the_th x"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2118
            have "{th'. (Th th', Th th1) \<in> (depend (wq s))\<^sup>+} \<subseteq> ?F ` ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2119
              apply (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2120
              by (rule_tac x = "(Th x, Th th1)" in bexI, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2121
            moreover have "finite \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2122
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2123
              from finite_depend[OF vt] have "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2124
              hence "finite ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2125
                apply (unfold finite_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2126
                by (auto simp: s_depend_def cs_depend_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2127
              thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2128
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2129
            ultimately show ?thesis by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2130
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2131
          thus ?thesis by (simp add:cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2132
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2133
        thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2134
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2135
      thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2136
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2137
    moreover have h2: "(?f ` ?A) \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2138
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2139
      have "?A \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2140
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2141
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2142
    from Max_in [OF h1 h2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2143
    have "Max (?f ` ?A) \<in> (?f ` ?A)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2144
    thus ?thesis by (auto intro:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2145
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2146
  obtain th2' where th2_in: "th2' \<in> ?B" and eq_f_th2: "?f th2' = Max (?f ` ?B)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2147
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2148
    have h1: "finite (?f ` ?B)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2149
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2150
      have "finite ?B" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2151
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2152
        have "finite (dependents (wq s) th2)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2153
        proof-
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2154
          have "finite {th'. (Th th', Th th2) \<in> (depend (wq s))\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2155
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2156
            let ?F = "\<lambda> (x, y). the_th x"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2157
            have "{th'. (Th th', Th th2) \<in> (depend (wq s))\<^sup>+} \<subseteq> ?F ` ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2158
              apply (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2159
              by (rule_tac x = "(Th x, Th th2)" in bexI, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2160
            moreover have "finite \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2161
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2162
              from finite_depend[OF vt] have "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2163
              hence "finite ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2164
                apply (unfold finite_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2165
                by (auto simp: s_depend_def cs_depend_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2166
              thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2167
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2168
            ultimately show ?thesis by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2169
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2170
          thus ?thesis by (simp add:cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2171
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2172
        thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2173
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2174
      thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2175
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2176
    moreover have h2: "(?f ` ?B) \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2177
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2178
      have "?B \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2179
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2180
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2181
    from Max_in [OF h1 h2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2182
    have "Max (?f ` ?B) \<in> (?f ` ?B)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2183
    thus ?thesis by (auto intro:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2184
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2185
  from eq_f_th1 eq_f_th2 eq_max 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2186
  have eq_preced: "preced th1' s = preced th2' s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2187
  hence eq_th12: "th1' = th2'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2188
  proof (rule preced_unique)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2189
    from th1_in have "th1' = th1 \<or> (th1' \<in> dependents (wq s) th1)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2190
    thus "th1' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2191
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2192
      assume "th1' \<in> dependents (wq s) th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2193
      hence "(Th th1') \<in> Domain ((depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2194
        apply (unfold cs_dependents_def cs_depend_def s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2195
        by (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2196
      hence "(Th th1') \<in> Domain (depend s)" by (simp add:trancl_domain)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2197
      from dm_depend_threads[OF vt this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2198
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2199
      assume "th1' = th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2200
      with runing_1 show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2201
        by (unfold runing_def readys_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2202
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2203
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2204
    from th2_in have "th2' = th2 \<or> (th2' \<in> dependents (wq s) th2)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2205
    thus "th2' \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2206
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2207
      assume "th2' \<in> dependents (wq s) th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2208
      hence "(Th th2') \<in> Domain ((depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2209
        apply (unfold cs_dependents_def cs_depend_def s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2210
        by (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2211
      hence "(Th th2') \<in> Domain (depend s)" by (simp add:trancl_domain)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2212
      from dm_depend_threads[OF vt this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2213
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2214
      assume "th2' = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2215
      with runing_2 show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2216
        by (unfold runing_def readys_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2217
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2218
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2219
  from th1_in have "th1' = th1 \<or> th1' \<in> dependents (wq s) th1" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2220
  thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2221
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2222
    assume eq_th': "th1' = th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2223
    from th2_in have "th2' = th2 \<or> th2' \<in> dependents (wq s) th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2224
    thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2225
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2226
      assume "th2' = th2" thus ?thesis using eq_th' eq_th12 by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2227
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2228
      assume "th2' \<in> dependents (wq s) th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2229
      with eq_th12 eq_th' have "th1 \<in> dependents (wq s) th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2230
      hence "(Th th1, Th th2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2231
        by (unfold cs_dependents_def s_depend_def cs_depend_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2232
      hence "Th th1 \<in> Domain ((depend s)^+)" using Domain_def [of "(depend s)^+"]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2233
        by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2234
      hence "Th th1 \<in> Domain (depend s)" by (simp add:trancl_domain)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2235
      then obtain n where d: "(Th th1, n) \<in> depend s" by (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2236
      from depend_target_th [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2237
      obtain cs' where "n = Cs cs'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2238
      with d have "(Th th1, Cs cs') \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2239
      with runing_1 have "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2240
        apply (unfold runing_def readys_def s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2241
        by (auto simp:eq_waiting)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2242
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2243
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2244
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2245
    assume th1'_in: "th1' \<in> dependents (wq s) th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2246
    from th2_in have "th2' = th2 \<or> th2' \<in> dependents (wq s) th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2247
    thus ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2248
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2249
      assume "th2' = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2250
      with th1'_in eq_th12 have "th2 \<in> dependents (wq s) th1" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2251
      hence "(Th th2, Th th1) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2252
        by (unfold cs_dependents_def s_depend_def cs_depend_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2253
      hence "Th th2 \<in> Domain ((depend s)^+)" using Domain_def [of "(depend s)^+"]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2254
        by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2255
      hence "Th th2 \<in> Domain (depend s)" by (simp add:trancl_domain)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2256
      then obtain n where d: "(Th th2, n) \<in> depend s" by (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2257
      from depend_target_th [OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2258
      obtain cs' where "n = Cs cs'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2259
      with d have "(Th th2, Cs cs') \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2260
      with runing_2 have "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2261
        apply (unfold runing_def readys_def s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2262
        by (auto simp:eq_waiting)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2263
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2264
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2265
      assume "th2' \<in> dependents (wq s) th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2266
      with eq_th12 have "th1' \<in> dependents (wq s) th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2267
      hence h1: "(Th th1', Th th2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2268
        by (unfold cs_dependents_def s_depend_def cs_depend_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2269
      from th1'_in have h2: "(Th th1', Th th1) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2270
        by (unfold cs_dependents_def s_depend_def cs_depend_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2271
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2272
      proof(rule dchain_unique[OF vt h1 _ h2, symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2273
        from runing_1 show "th1 \<in> readys s" by (simp add:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2274
        from runing_2 show "th2 \<in> readys s" by (simp add:runing_def) 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2275
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2276
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2277
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2278
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2279
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2280
lemma create_pre:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2281
  assumes stp: "step s e"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2282
  and not_in: "th \<notin> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2283
  and is_in: "th \<in> threads (e#s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2284
  obtains prio where "e = Create th prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2285
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2286
  from assms  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2287
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2288
  proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2289
    case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2290
    with is_in not_in have "e = Create th prio" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2291
    from that[OF this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2292
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2293
    case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2294
    with assms show ?thesis by (auto intro!:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2295
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2296
    case (thread_P thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2297
    with assms show ?thesis by (auto intro!:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2298
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2299
    case (thread_V thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2300
    with assms show ?thesis by (auto intro!:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2301
  next 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2302
    case (thread_set thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2303
    with assms show ?thesis by (auto intro!:that)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2304
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2305
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2306
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2307
lemma length_down_to_in: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2308
  assumes le_ij: "i \<le> j"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2309
    and le_js: "j \<le> length s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2310
  shows "length (down_to j i s) = j - i"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2311
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2312
  have "length (down_to j i s) = length (from_to i j (rev s))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2313
    by (unfold down_to_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2314
  also have "\<dots> = j - i"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2315
  proof(rule length_from_to_in[OF le_ij])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2316
    from le_js show "j \<le> length (rev s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2317
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2318
  finally show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2319
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2320
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2321
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2322
lemma moment_head: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2323
  assumes le_it: "Suc i \<le> length t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2324
  obtains e where "moment (Suc i) t = e#moment i t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2325
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2326
  have "i \<le> Suc i" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2327
  from length_down_to_in [OF this le_it]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2328
  have "length (down_to (Suc i) i t) = 1" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2329
  then obtain e where "down_to (Suc i) i t = [e]"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2330
    apply (cases "(down_to (Suc i) i t)") by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2331
  moreover have "down_to (Suc i) 0 t = down_to (Suc i) i t @ down_to i 0 t"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2332
    by (rule down_to_conc[symmetric], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2333
  ultimately have eq_me: "moment (Suc i) t = e#(moment i t)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2334
    by (auto simp:down_to_moment)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2335
  from that [OF this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2336
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2337
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2338
lemma cnp_cnv_eq:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2339
  fixes th s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2340
  assumes "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2341
  and "th \<notin> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2342
  shows "cntP s th = cntV s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2343
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2344
  from assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2345
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2346
    case (vt_cons s e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2347
    have ih: "th \<notin> threads s \<Longrightarrow> cntP s th = cntV s th" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2348
    have not_in: "th \<notin> threads (e # s)" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2349
    have "step s e" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2350
    thus ?case proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2351
      case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2352
      assume eq_e: "e = Create thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2353
      hence "thread \<in> threads (e#s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2354
      with not_in and eq_e have "th \<notin> threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2355
      from ih [OF this] show ?thesis using eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2356
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2357
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2358
      case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2359
      assume eq_e: "e = Exit thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2360
        and not_holding: "holdents s thread = {}"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2361
      have vt_s: "vt s" by fact
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2362
      from finite_holding[OF vt_s] have "finite (holdents s thread)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2363
      with not_holding have "cntCS s thread = 0" by (unfold cntCS_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2364
      moreover have "thread \<in> readys s" using thread_exit by (auto simp:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2365
      moreover note cnp_cnv_cncs[OF vt_s, of thread]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2366
      ultimately have eq_thread: "cntP s thread = cntV s thread" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2367
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2368
      proof(cases "th = thread")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2369
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2370
        with eq_thread eq_e show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2371
          by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2372
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2373
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2374
        with not_in and eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2375
        from ih[OF this] and eq_e show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2376
           by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2377
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2378
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2379
      case (thread_P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2380
      assume eq_e: "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2381
      have "thread \<in> runing s" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2382
      with not_in eq_e have neq_th: "thread \<noteq> th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2383
        by (auto simp:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2384
      from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2385
      from ih[OF this] and neq_th and eq_e show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2386
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2387
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2388
      case (thread_V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2389
      assume eq_e: "e = V thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2390
      have "thread \<in> runing s" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2391
      with not_in eq_e have neq_th: "thread \<noteq> th" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2392
        by (auto simp:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2393
      from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2394
      from ih[OF this] and neq_th and eq_e show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2395
        by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2396
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2397
      case (thread_set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2398
      assume eq_e: "e = Set thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2399
        and "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2400
      hence "thread \<in> threads (e#s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2401
        by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2402
      with not_in and eq_e have "th \<notin> threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2403
      from ih [OF this] show ?thesis using eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2404
        by (auto simp:cntP_def cntV_def count_def)  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2405
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2406
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2407
    case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2408
    show ?case by (auto simp:cntP_def cntV_def count_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2409
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2410
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2411
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2412
lemma eq_depend: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2413
  "depend (wq s) = depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2414
by (unfold cs_depend_def s_depend_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2415
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2416
lemma count_eq_dependents:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2417
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2418
  and eq_pv: "cntP s th = cntV s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2419
  shows "dependents (wq s) th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2420
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2421
  from cnp_cnv_cncs[OF vt] and eq_pv
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2422
  have "cntCS s th = 0" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2423
    by (auto split:if_splits)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2424
  moreover have "finite {cs. (Cs cs, Th th) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2425
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2426
    from finite_holding[OF vt, of th] show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2427
      by (simp add:holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2428
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2429
  ultimately have h: "{cs. (Cs cs, Th th) \<in> depend s} = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2430
    by (unfold cntCS_def holdents_def cs_dependents_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2431
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2432
  proof(unfold cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2433
    { assume "{th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+} \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2434
      then obtain th' where "(Th th', Th th) \<in> (depend (wq s))\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2435
      hence "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2436
      proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2437
        assume "(Th th', Th th) \<in> depend (wq s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2438
        thus "False" by (auto simp:cs_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2439
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2440
        fix c
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2441
        assume "(c, Th th) \<in> depend (wq s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2442
        with h and eq_depend show "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2443
          by (cases c, auto simp:cs_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2444
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2445
    } thus "{th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+} = {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2446
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2447
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2448
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2449
lemma dependents_threads:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2450
  fixes s th
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2451
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2452
  shows "dependents (wq s) th \<subseteq> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2453
proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2454
  { fix th th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2455
    assume h: "th \<in> {th'a. (Th th'a, Th th') \<in> (depend (wq s))\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2456
    have "Th th \<in> Domain (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2457
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2458
      from h obtain th' where "(Th th, Th th') \<in> (depend (wq s))\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2459
      hence "(Th th) \<in> Domain ( (depend (wq s))\<^sup>+)" by (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2460
      with trancl_domain have "(Th th) \<in> Domain (depend (wq s))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2461
      thus ?thesis using eq_depend by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2462
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2463
    from dm_depend_threads[OF vt this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2464
    have "th \<in> threads s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2465
  } note hh = this
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2466
  fix th1 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2467
  assume "th1 \<in> dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2468
  hence "th1 \<in> {th'a. (Th th'a, Th th) \<in> (depend (wq s))\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2469
    by (unfold cs_dependents_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2470
  from hh [OF this] show "th1 \<in> threads s" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2471
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2472
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2473
lemma finite_threads:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2474
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2475
  shows "finite (threads s)"
309
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
  2476
using vt
e44c4055d430 more on the paper
urbanc
parents: 298
diff changeset
  2477
by (induct) (auto elim: step.cases)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2478
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2479
lemma Max_f_mono:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2480
  assumes seq: "A \<subseteq> B"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2481
  and np: "A \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2482
  and fnt: "finite B"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2483
  shows "Max (f ` A) \<le> Max (f ` B)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2484
proof(rule Max_mono)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2485
  from seq show "f ` A \<subseteq> f ` B" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2486
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2487
  from np show "f ` A \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2488
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2489
  from fnt and seq show "finite (f ` B)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2490
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2491
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2492
lemma cp_le:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2493
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2494
  and th_in: "th \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2495
  shows "cp s th \<le> Max ((\<lambda> th. (preced th s)) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2496
proof(unfold cp_eq_cpreced cpreced_def cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2497
  show "Max ((\<lambda>th. preced th s) ` ({th} \<union> {th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+}))
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2498
         \<le> Max ((\<lambda>th. preced th s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2499
    (is "Max (?f ` ?A) \<le> Max (?f ` ?B)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2500
  proof(rule Max_f_mono)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2501
    show "{th} \<union> {th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+} \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2502
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2503
    from finite_threads [OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2504
    show "finite (threads s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2505
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2506
    from th_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2507
    show "{th} \<union> {th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+} \<subseteq> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2508
      apply (auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2509
      apply (rule_tac dm_depend_threads[OF vt])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2510
      apply (unfold trancl_domain [of "depend s", symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2511
      by (unfold cs_depend_def s_depend_def, auto simp:Domain_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2512
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2513
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2514
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2515
lemma le_cp:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2516
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2517
  shows "preced th s \<le> cp s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2518
proof(unfold cp_eq_cpreced preced_def cpreced_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2519
  show "Prc (original_priority th s) (birthtime th s)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2520
    \<le> Max (insert (Prc (original_priority th s) (birthtime th s))
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2521
            ((\<lambda>th. Prc (original_priority th s) (birthtime th s)) ` dependents (wq s) th))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2522
    (is "?l \<le> Max (insert ?l ?A)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2523
  proof(cases "?A = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2524
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2525
    have "finite ?A" (is "finite (?f ` ?B)")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2526
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2527
      have "finite ?B" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2528
      proof-
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2529
        have "finite {th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2530
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2531
          let ?F = "\<lambda> (x, y). the_th x"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2532
          have "{th'. (Th th', Th th) \<in> (depend (wq s))\<^sup>+} \<subseteq> ?F ` ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2533
            apply (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2534
            by (rule_tac x = "(Th x, Th th)" in bexI, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2535
          moreover have "finite \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2536
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2537
            from finite_depend[OF vt] have "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2538
            hence "finite ((depend (wq s))\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2539
              apply (unfold finite_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2540
              by (auto simp: s_depend_def cs_depend_def wq_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2541
            thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2542
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2543
          ultimately show ?thesis by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2544
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2545
        thus ?thesis by (simp add:cs_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2546
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2547
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2548
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2549
    from Max_insert [OF this False, of ?l] show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2550
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2551
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2552
    thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2553
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2554
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2555
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2556
lemma max_cp_eq: 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2557
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2558
  shows "Max ((cp s) ` threads s) = Max ((\<lambda> th. (preced th s)) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2559
  (is "?l = ?r")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2560
proof(cases "threads s = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2561
  case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2562
  thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2563
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2564
  case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2565
  have "?l \<in> ((cp s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2566
  proof(rule Max_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2567
    from finite_threads[OF vt] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2568
    show "finite (cp s ` threads s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2569
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2570
    from False show "cp s ` threads s \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2571
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2572
  then obtain th 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2573
    where th_in: "th \<in> threads s" and eq_l: "?l = cp s th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2574
  have "\<dots> \<le> ?r" by (rule cp_le[OF vt th_in])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2575
  moreover have "?r \<le> cp s th" (is "Max (?f ` ?A) \<le> cp s th")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2576
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2577
    have "?r \<in> (?f ` ?A)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2578
    proof(rule Max_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2579
      from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2580
      show " finite ((\<lambda>th. preced th s) ` threads s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2581
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2582
      from False show " (\<lambda>th. preced th s) ` threads s \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2583
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2584
    then obtain th' where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2585
      th_in': "th' \<in> ?A " and eq_r: "?r = ?f th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2586
    from le_cp [OF vt, of th']  eq_r
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2587
    have "?r \<le> cp s th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2588
    moreover have "\<dots> \<le> cp s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2589
    proof(fold eq_l)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2590
      show " cp s th' \<le> Max (cp s ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2591
      proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2592
        from th_in' show "cp s th' \<in> cp s ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2593
          by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2594
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2595
        from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2596
        show "finite (cp s ` threads s)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2597
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2598
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2599
    ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2600
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2601
  ultimately show ?thesis using eq_l by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2602
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2603
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2604
lemma max_cp_readys_threads_pre:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2605
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2606
  and np: "threads s \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2607
  shows "Max (cp s ` readys s) = Max (cp s ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2608
proof(unfold max_cp_eq[OF vt])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2609
  show "Max (cp s ` readys s) = Max ((\<lambda>th. preced th s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2610
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2611
    let ?p = "Max ((\<lambda>th. preced th s) ` threads s)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2612
    let ?f = "(\<lambda>th. preced th s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2613
    have "?p \<in> ((\<lambda>th. preced th s) ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2614
    proof(rule Max_in)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2615
      from finite_threads[OF vt] show "finite (?f ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2616
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2617
      from np show "?f ` threads s \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2618
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2619
    then obtain tm where tm_max: "?f tm = ?p" and tm_in: "tm \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2620
      by (auto simp:Image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2621
    from th_chain_to_ready [OF vt tm_in]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2622
    have "tm \<in> readys s \<or> (\<exists>th'. th' \<in> readys s \<and> (Th tm, Th th') \<in> (depend s)\<^sup>+)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2623
    thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2624
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2625
      assume "\<exists>th'. th' \<in> readys s \<and> (Th tm, Th th') \<in> (depend s)\<^sup>+ "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2626
      then obtain th' where th'_in: "th' \<in> readys s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2627
        and tm_chain:"(Th tm, Th th') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2628
      have "cp s th' = ?f tm"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2629
      proof(subst cp_eq_cpreced, subst cpreced_def, rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2630
        from dependents_threads[OF vt] finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2631
        show "finite ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2632
          by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2633
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2634
        fix p assume p_in: "p \<in> (\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2635
        from tm_max have " preced tm s = Max ((\<lambda>th. preced th s) ` threads s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2636
        moreover have "p \<le> \<dots>"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2637
        proof(rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2638
          from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2639
          show "finite ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2640
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2641
          from p_in and th'_in and dependents_threads[OF vt, of th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2642
          show "p \<in> (\<lambda>th. preced th s) ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2643
            by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2644
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2645
        ultimately show "p \<le> preced tm s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2646
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2647
        show "preced tm s \<in> (\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2648
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2649
          from tm_chain
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2650
          have "tm \<in> dependents (wq s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2651
            by (unfold cs_dependents_def s_depend_def cs_depend_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2652
          thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2653
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2654
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2655
      with tm_max
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2656
      have h: "cp s th' = Max ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2657
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2658
      proof (fold h, rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2659
        fix q 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2660
        assume "q \<in> cp s ` readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2661
        then obtain th1 where th1_in: "th1 \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2662
          and eq_q: "q = cp s th1" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2663
        show "q \<le> cp s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2664
          apply (unfold h eq_q)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2665
          apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2666
          apply (rule Max_mono)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2667
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2668
          from dependents_threads [OF vt, of th1] th1_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2669
          show "(\<lambda>th. preced th s) ` ({th1} \<union> dependents (wq s) th1) \<subseteq> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2670
                 (\<lambda>th. preced th s) ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2671
            by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2672
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2673
          show "(\<lambda>th. preced th s) ` ({th1} \<union> dependents (wq s) th1) \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2674
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2675
          from finite_threads[OF vt] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2676
          show " finite ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2677
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2678
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2679
        from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2680
        show "finite (cp s ` readys s)" by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2681
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2682
        from th'_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2683
        show "cp s th' \<in> cp s ` readys s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2684
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2685
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2686
      assume tm_ready: "tm \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2687
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2688
      proof(fold tm_max)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2689
        have cp_eq_p: "cp s tm = preced tm s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2690
        proof(unfold cp_eq_cpreced cpreced_def, rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2691
          fix y 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2692
          assume hy: "y \<in> (\<lambda>th. preced th s) ` ({tm} \<union> dependents (wq s) tm)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2693
          show "y \<le> preced tm s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2694
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2695
            { fix y'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2696
              assume hy' : "y' \<in> ((\<lambda>th. preced th s) ` dependents (wq s) tm)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2697
              have "y' \<le> preced tm s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2698
              proof(unfold tm_max, rule Max_ge)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2699
                from hy' dependents_threads[OF vt, of tm]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2700
                show "y' \<in> (\<lambda>th. preced th s) ` threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2701
              next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2702
                from finite_threads[OF vt] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2703
                show "finite ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2704
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2705
            } with hy show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2706
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2707
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2708
          from dependents_threads[OF vt, of tm] finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2709
          show "finite ((\<lambda>th. preced th s) ` ({tm} \<union> dependents (wq s) tm))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2710
            by (auto intro:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2711
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2712
          show "preced tm s \<in> (\<lambda>th. preced th s) ` ({tm} \<union> dependents (wq s) tm)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2713
            by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2714
        qed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2715
        moreover have "Max (cp s ` readys s) = cp s tm"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2716
        proof(rule Max_eqI)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2717
          from tm_ready show "cp s tm \<in> cp s ` readys s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2718
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2719
          from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2720
          show "finite (cp s ` readys s)" by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2721
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2722
          fix y assume "y \<in> cp s ` readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2723
          then obtain th1 where th1_readys: "th1 \<in> readys s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2724
            and h: "y = cp s th1" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2725
          show "y \<le> cp s tm"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2726
            apply(unfold cp_eq_p h)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2727
            apply(unfold cp_eq_cpreced cpreced_def tm_max, rule Max_mono)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2728
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2729
            from finite_threads[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2730
            show "finite ((\<lambda>th. preced th s) ` threads s)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2731
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2732
            show "(\<lambda>th. preced th s) ` ({th1} \<union> dependents (wq s) th1) \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2733
              by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2734
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2735
            from dependents_threads[OF vt, of th1] th1_readys
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2736
            show "(\<lambda>th. preced th s) ` ({th1} \<union> dependents (wq s) th1) 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2737
                    \<subseteq> (\<lambda>th. preced th s) ` threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2738
              by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2739
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2740
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2741
        ultimately show " Max (cp s ` readys s) = preced tm s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2742
      qed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2743
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2744
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2745
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2746
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2747
lemma max_cp_readys_threads:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2748
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2749
  shows "Max (cp s ` readys s) = Max (cp s ` threads s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2750
proof(cases "threads s = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2751
  case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2752
  thus ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2753
    by (auto simp:readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2754
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2755
  case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2756
  show ?thesis by (rule max_cp_readys_threads_pre[OF vt False])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2757
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2758
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2759
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2760
lemma eq_holding: "holding (wq s) th cs = holding s th cs"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 294
diff changeset
  2761
  apply (unfold s_holding_def cs_holding_def wq_def, simp)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2762
  done
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2763
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2764
lemma f_image_eq:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2765
  assumes h: "\<And> a. a \<in> A \<Longrightarrow> f a = g a"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2766
  shows "f ` A = g ` A"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2767
proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2768
  show "f ` A \<subseteq> g ` A"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2769
    by(rule image_subsetI, auto intro:h)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2770
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2771
  show "g ` A \<subseteq> f ` A"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2772
   by(rule image_subsetI, auto intro:h[symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2773
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2774
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  2775
end