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