prio/CpsG.thy
author zhang
Mon, 16 Apr 2012 08:48:20 +0000
changeset 340 0244e76df2ca
parent 336 f9e0d3274c14
child 347 73127f5db18f
permissions -rw-r--r--
The result for "Set" operation gets strengthened.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     1
theory CpsG
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     2
imports PrioG 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     3
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     4
336
f9e0d3274c14 fixed typo
urbanc
parents: 333
diff changeset
     5
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     6
lemma not_thread_holdents:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     7
  fixes th s
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
     8
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     9
  and not_in: "th \<notin> threads s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    10
  shows "holdents s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    11
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    12
  from vt not_in show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    13
  proof(induct arbitrary:th)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    14
    case (vt_cons s e th)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
    15
    assume vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    16
      and ih: "\<And>th. th \<notin> threads s \<Longrightarrow> holdents s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    17
      and stp: "step s e"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    18
      and not_in: "th \<notin> threads (e # s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    19
    from stp show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    20
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    21
      case (thread_create thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    22
      assume eq_e: "e = Create thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    23
        and not_in': "thread \<notin> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    24
      have "holdents (e # s) th = holdents s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    25
        apply (unfold eq_e holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    26
        by (simp add:depend_create_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    27
      moreover have "th \<notin> threads s" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    28
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    29
        from not_in eq_e show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    30
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    31
      moreover note ih ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    32
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    33
      case (thread_exit thread)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    34
      assume eq_e: "e = Exit thread"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    35
      and nh: "holdents s thread = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    36
      show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    37
      proof(cases "th = thread")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    38
        case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    39
        with nh eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    40
        show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    41
          by (auto simp:holdents_def depend_exit_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    42
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    43
        case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    44
        with not_in and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    45
        have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    46
        from ih[OF this] False eq_e show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    47
          by (auto simp:holdents_def depend_exit_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    48
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    49
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    50
      case (thread_P thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    51
      assume eq_e: "e = P thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    52
      and is_runing: "thread \<in> runing s"
333
813e7257c7c3 some polishing of the repository
urbanc
parents: 312
diff changeset
    53
      from assms thread_exit ih stp not_in vt eq_e have vtp: "vt (P thread cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    54
      have neq_th: "th \<noteq> thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    55
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    56
        from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    57
        moreover from is_runing have "thread \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    58
          by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    59
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    60
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    61
      hence "holdents (e # s) th  = holdents s th "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    62
        apply (unfold cntCS_def holdents_def eq_e)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    63
        by (unfold step_depend_p[OF vtp], auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    64
      moreover have "holdents s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    65
      proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    66
        from not_in eq_e show "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    67
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    68
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    69
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    70
      case (thread_V thread cs)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    71
      assume eq_e: "e = V thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    72
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    73
        and hold: "holding s thread cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    74
      have neq_th: "th \<noteq> thread" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    75
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    76
        from not_in eq_e have "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    77
        moreover from is_runing have "thread \<in> threads s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    78
          by (simp add:runing_def readys_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    79
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    80
      qed
333
813e7257c7c3 some polishing of the repository
urbanc
parents: 312
diff changeset
    81
      from assms thread_V eq_e ih stp not_in vt have vtv: "vt (V thread cs#s)" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    82
      from hold obtain rest 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    83
        where eq_wq: "wq s cs = thread # rest"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
    84
        by (case_tac "wq s cs", auto simp: wq_def s_holding_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    85
      from not_in eq_e eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    86
      have "\<not> next_th s thread cs th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    87
        apply (auto simp:next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    88
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    89
        assume ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    90
          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
    91
        have "?t \<in> set rest"
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 vtv], of cs] and eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    94
          show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    95
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    96
          fix x assume "distinct x \<and> set x = set rest" with ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    97
          show "hd x \<in> set rest" by (cases x, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    98
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    99
        with eq_wq have "?t \<in> set (wq s cs)" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   100
        from wq_threads[OF step_back_vt[OF vtv], OF this] and ni
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   101
        show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   102
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   103
      moreover note neq_th eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   104
      ultimately have "holdents (e # s) th  = holdents s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   105
        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
   106
      moreover have "holdents s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   107
      proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   108
        from not_in eq_e show "th \<notin> threads s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   109
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   110
      ultimately show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   111
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   112
      case (thread_set thread prio)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   113
      print_facts
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   114
      assume eq_e: "e = Set thread prio"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   115
        and is_runing: "thread \<in> runing s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   116
      from not_in and eq_e have "th \<notin> threads s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   117
      from ih [OF this] and eq_e
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   118
      show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   119
        apply (unfold eq_e cntCS_def holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   120
        by (simp add:depend_set_unchanged)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   121
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   122
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   123
      case vt_nil
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   124
      show ?case
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   125
      by (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
   126
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   127
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   128
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   129
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   130
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   131
lemma next_th_neq: 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   132
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   133
  and nt: "next_th s th cs th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   134
  shows "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   135
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   136
  from nt show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   137
    apply (auto simp:next_th_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   138
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   139
    fix rest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   140
    assume 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
   141
      and ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   142
    have "hd (SOME q. distinct q \<and> set q = set rest) \<in> set rest" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   143
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   144
      from wq_distinct[OF vt, of cs] eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   145
      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   146
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   147
      fix x
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   148
      assume "distinct x \<and> set x = set rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   149
      hence eq_set: "set x = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   150
      with ne have "x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   151
      hence "hd x \<in> set x" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   152
      with eq_set show "hd x \<in> set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   153
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   154
    with wq_distinct[OF vt, of cs] eq_wq show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   155
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   156
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   157
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   158
lemma next_th_unique: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   159
  assumes nt1: "next_th s th cs th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   160
  and nt2: "next_th s th cs th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   161
  shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   162
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   163
  from assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   164
    by (unfold next_th_def, 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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   167
lemma pp_sub: "(r^+)^+ \<subseteq> r^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   168
  by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   169
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   170
lemma wf_depend:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   171
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   172
  shows "wf (depend s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   173
proof(rule finite_acyclic_wf)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   174
  from finite_depend[OF vt] show "finite (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   175
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   176
  from acyclic_depend[OF vt] show "acyclic (depend s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   177
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   178
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   179
lemma Max_Union:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   180
  assumes fc: "finite C"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   181
  and ne: "C \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   182
  and fa: "\<And> A. A \<in> C \<Longrightarrow> finite A \<and> A \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   183
  shows "Max (\<Union> C) = Max (Max ` C)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   184
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   185
  from fc ne fa show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   186
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   187
    case (insert x F)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   188
    assume ih: "\<lbrakk>F \<noteq> {}; \<And>A. A \<in> F \<Longrightarrow> finite A \<and> A \<noteq> {}\<rbrakk> \<Longrightarrow> Max (\<Union>F) = Max (Max ` F)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   189
    and h: "\<And> A. A \<in> insert x F \<Longrightarrow> finite A \<and> A \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   190
    show ?case (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   191
    proof(cases "F = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   192
      case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   193
      from Union_insert have "?L = Max (x \<union> (\<Union> F))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   194
      also have "\<dots> = max (Max x) (Max(\<Union> F))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   195
      proof(rule Max_Un)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   196
        from h[of x] show "finite x" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   197
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   198
        from h[of x] show "x \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   199
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   200
        show "finite (\<Union>F)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   201
        proof(rule finite_Union)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   202
          show "finite F" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   203
        next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   204
          from h show "\<And>M. M \<in> F \<Longrightarrow> finite M" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   205
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   206
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   207
        from False and h show "\<Union>F \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   208
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   209
      also have "\<dots> = ?R"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   210
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   211
        have "?R = Max (Max ` ({x} \<union> F))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   212
        also have "\<dots> = Max ({Max x} \<union> (Max ` F))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   213
        also have "\<dots> = max (Max x) (Max (\<Union>F))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   214
        proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   215
          have "Max ({Max x} \<union> Max ` F) = max (Max {Max x}) (Max (Max ` F))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   216
          proof(rule Max_Un)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   217
            show "finite {Max x}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   218
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   219
            show "{Max x} \<noteq> {}" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   220
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   221
            from insert show "finite (Max ` F)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   222
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   223
            from False show "Max ` F \<noteq> {}" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   224
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   225
          moreover have "Max {Max x} = Max x" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   226
          moreover have "Max (\<Union>F) = Max (Max ` F)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   227
          proof(rule ih)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   228
            show "F \<noteq> {}" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   229
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   230
            from h show "\<And>A. A \<in> F \<Longrightarrow> finite A \<and> A \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   231
              by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   232
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   233
          ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   234
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   235
        finally show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   236
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   237
      finally show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   238
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   239
      case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   240
      thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   241
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   242
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   243
    case empty
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   244
    assume "{} \<noteq> {}" show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   245
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   246
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   247
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   248
definition child :: "state \<Rightarrow> (node \<times> node) set"
312
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
   249
  where "child s \<equiv>
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   250
            {(Th th', Th th) | th th'. \<exists> cs. (Th th', Cs cs) \<in> depend s \<and> (Cs cs, Th th) \<in> depend s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   251
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   252
definition children :: "state \<Rightarrow> thread \<Rightarrow> thread set"
312
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
   253
  where "children s th \<equiv> {th'. (Th th', Th th) \<in> child s}"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   254
312
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
   255
lemma children_def2:
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
   256
  "children s th \<equiv> {th'. \<exists> cs. (Th th', Cs cs) \<in> depend s \<and> (Cs cs, Th th) \<in> depend s}"
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
   257
unfolding child_def children_def by simp
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   258
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   259
lemma children_dependents: "children s th \<subseteq> dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   260
  by (unfold children_def child_def cs_dependents_def, auto simp:eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   261
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   262
lemma child_unique:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   263
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   264
  and ch1: "(Th th, Th th1) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   265
  and ch2: "(Th th, Th th2) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   266
  shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   267
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   268
  from ch1 ch2 show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   269
  proof(unfold child_def, clarsimp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   270
    fix cs csa
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   271
    assume h1: "(Th th, Cs cs) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   272
      and h2: "(Cs cs, Th th1) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   273
      and h3: "(Th th, Cs csa) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   274
      and h4: "(Cs csa, Th th2) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   275
    from unique_depend[OF vt h1 h3] have "cs = csa" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   276
    with h4 have "(Cs cs, Th th2) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   277
    from unique_depend[OF vt h2 this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   278
    show "th1 = th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   279
  qed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   280
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   281
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   282
290
6a6d0bd16035 more on paper
urbanc
parents: 272
diff changeset
   283
lemma cp_eq_cpreced_f: "cp s = cpreced (wq s) s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   284
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   285
  from fun_eq_iff 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   286
  have h:"\<And>f g. (\<forall> x. f x = g x) \<Longrightarrow> f = g" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   287
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   288
  proof(rule h)
290
6a6d0bd16035 more on paper
urbanc
parents: 272
diff changeset
   289
    from cp_eq_cpreced show "\<forall>x. cp s x = cpreced (wq s) s x" by auto
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   290
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   291
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   292
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   293
lemma depend_children:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   294
  assumes h: "(Th th1, Th th2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   295
  shows "th1 \<in> children s th2 \<or> (\<exists> th3. th3 \<in> children s th2 \<and> (Th th1, Th th3) \<in> (depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   296
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   297
  from h show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   298
  proof(induct rule: tranclE)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   299
    fix c th2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   300
    assume h1: "(Th th1, c) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   301
    and h2: "(c, Th th2) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   302
    from h2 obtain cs where eq_c: "c = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   303
      by (case_tac c, auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   304
    show "th1 \<in> children s th2 \<or> (\<exists>th3. th3 \<in> children s th2 \<and> (Th th1, Th th3) \<in> (depend s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   305
    proof(rule tranclE[OF h1])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   306
      fix ca
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   307
      assume h3: "(Th th1, ca) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   308
        and h4: "(ca, c) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   309
      show "th1 \<in> children s th2 \<or> (\<exists>th3. th3 \<in> children s th2 \<and> (Th th1, Th th3) \<in> (depend s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   310
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   311
        from eq_c and h4 obtain th3 where eq_ca: "ca = Th th3"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   312
          by (case_tac ca, auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   313
        from eq_ca h4 h2 eq_c
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   314
        have "th3 \<in> children s th2" by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   315
        moreover from h3 eq_ca have "(Th th1, Th th3) \<in> (depend s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   316
        ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   317
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   318
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   319
      assume "(Th th1, c) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   320
      with h2 eq_c
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   321
      have "th1 \<in> children s th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   322
        by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   323
      thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   324
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   325
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   326
    assume "(Th th1, Th th2) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   327
    thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   328
      by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   329
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   330
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   331
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   332
lemma sub_child: "child s \<subseteq> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   333
  by (unfold child_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   334
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   335
lemma wf_child: 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   336
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   337
  shows "wf (child s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   338
proof(rule wf_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   339
  from wf_trancl[OF wf_depend[OF vt]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   340
  show "wf ((depend s)\<^sup>+)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   341
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   342
  from sub_child show "child s \<subseteq> (depend s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   343
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   344
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   345
lemma depend_child_pre:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   346
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   347
  shows
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   348
  "(Th th, n) \<in> (depend s)^+ \<longrightarrow> (\<forall> th'. n = (Th th') \<longrightarrow> (Th th, Th th') \<in> (child s)^+)" (is "?P n")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   349
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   350
  from wf_trancl[OF wf_depend[OF vt]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   351
  have wf: "wf ((depend s)^+)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   352
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   353
  proof(rule wf_induct[OF wf, of ?P], clarsimp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   354
    fix th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   355
    assume ih[rule_format]: "\<forall>y. (y, Th th') \<in> (depend s)\<^sup>+ \<longrightarrow>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   356
               (Th th, y) \<in> (depend s)\<^sup>+ \<longrightarrow> (\<forall>th'. y = Th th' \<longrightarrow> (Th th, Th th') \<in> (child s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   357
    and h: "(Th th, Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   358
    show "(Th th, Th th') \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   359
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   360
      from depend_children[OF h]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   361
      have "th \<in> children s th' \<or> (\<exists>th3. th3 \<in> children s th' \<and> (Th th, Th th3) \<in> (depend s)\<^sup>+)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   362
      thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   363
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   364
        assume "th \<in> children s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   365
        thus "(Th th, Th th') \<in> (child s)\<^sup>+" by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   366
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   367
        assume "\<exists>th3. th3 \<in> children s th' \<and> (Th th, Th th3) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   368
        then obtain th3 where th3_in: "th3 \<in> children s th'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   369
          and th_dp: "(Th th, Th th3) \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   370
        from th3_in have "(Th th3, Th th') \<in> (depend s)^+" by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   371
        from ih[OF this th_dp, of th3] have "(Th th, Th th3) \<in> (child s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   372
        with th3_in show "(Th th, Th th') \<in> (child s)\<^sup>+" by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   373
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   374
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   375
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   376
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   377
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   378
lemma depend_child: "\<lbrakk>vt s; (Th th, Th th') \<in> (depend s)^+\<rbrakk> \<Longrightarrow> (Th th, Th th') \<in> (child s)^+"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   379
  by (insert depend_child_pre, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   380
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   381
lemma child_depend_p:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   382
  assumes "(n1, n2) \<in> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   383
  shows "(n1, n2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   384
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   385
  from assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   386
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   387
    case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   388
    with sub_child show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   389
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   390
    case (step y z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   391
    assume "(y, z) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   392
    with sub_child have "(y, z) \<in> (depend s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   393
    moreover have "(n1, y) \<in> (depend s)^+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   394
    ultimately show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   395
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   396
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   397
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   398
lemma child_depend_eq: 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   399
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   400
  shows 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   401
  "((Th th1, Th th2) \<in> (child s)^+) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   402
   ((Th th1, Th th2) \<in> (depend s)^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   403
  by (auto intro: depend_child[OF vt] child_depend_p)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   404
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   405
lemma children_no_dep:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   406
  fixes s th th1 th2 th3
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   407
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   408
  and ch1: "(Th th1, Th th) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   409
  and ch2: "(Th th2, Th th) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   410
  and ch3: "(Th th1, Th th2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   411
  shows "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   412
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   413
  from depend_child[OF vt ch3]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   414
  have "(Th th1, Th th2) \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   415
  thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   416
  proof(rule converse_tranclE)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   417
    thm tranclD
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   418
    assume "(Th th1, Th th2) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   419
    from child_unique[OF vt ch1 this] have "th = th2" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   420
    with ch2 have "(Th th2, Th th2) \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   421
    with wf_child[OF vt] show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   422
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   423
    fix c
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   424
    assume h1: "(Th th1, c) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   425
      and h2: "(c, Th th2) \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   426
    from h1 obtain th3 where eq_c: "c = Th th3" by (unfold child_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   427
    with h1 have "(Th th1, Th th3) \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   428
    from child_unique[OF vt ch1 this] have eq_th3: "th3 = th" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   429
    with eq_c and h2 have "(Th th, Th th2) \<in> (child s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   430
    with ch2 have "(Th th, Th th) \<in> (child s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   431
    moreover have "wf ((child s)\<^sup>+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   432
    proof(rule wf_trancl)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   433
      from wf_child[OF vt] show "wf (child s)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   434
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   435
    ultimately show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   436
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   437
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   438
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   439
lemma unique_depend_p:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   440
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   441
  and dp1: "(n, n1) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   442
  and dp2: "(n, n2) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   443
  and neq: "n1 \<noteq> n2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   444
  shows "(n1, n2) \<in> (depend s)^+ \<or> (n2, n1) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   445
proof(rule unique_chain [OF _ dp1 dp2 neq])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   446
  from unique_depend[OF vt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   447
  show "\<And>a b c. \<lbrakk>(a, b) \<in> depend s; (a, c) \<in> depend s\<rbrakk> \<Longrightarrow> b = c" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   448
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   449
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   450
lemma dependents_child_unique:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   451
  fixes s th th1 th2 th3
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   452
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   453
  and ch1: "(Th th1, Th th) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   454
  and ch2: "(Th th2, Th th) \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   455
  and dp1: "th3 \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   456
  and dp2: "th3 \<in> dependents s th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   457
shows "th1 = th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   458
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   459
  { assume neq: "th1 \<noteq> th2"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   460
    from dp1 have dp1: "(Th th3, Th th1) \<in> (depend s)^+" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   461
      by (simp add:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   462
    from dp2 have dp2: "(Th th3, Th th2) \<in> (depend s)^+" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   463
      by (simp add:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   464
    from unique_depend_p[OF vt dp1 dp2] and neq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   465
    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
   466
    hence False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   467
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   468
      assume "(Th th1, Th th2) \<in> (depend s)\<^sup>+ "
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   469
      from children_no_dep[OF vt ch1 ch2 this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   470
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   471
      assume " (Th th2, Th th1) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   472
      from children_no_dep[OF vt ch2 ch1 this] show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   473
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   474
  } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   475
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   476
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   477
lemma cp_rec:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   478
  fixes s th
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   479
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   480
  shows "cp s th = Max ({preced th s} \<union> (cp s ` children s th))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   481
proof(unfold cp_eq_cpreced_f cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   482
  let ?f = "(\<lambda>th. preced th s)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   483
  show "Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th)) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   484
        Max ({preced th s} \<union> (\<lambda>th. Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th))) ` children s th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   485
  proof(cases " children s th = {}")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   486
    case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   487
    have "(\<lambda>th. Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th))) ` children s th = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   488
          {Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) | th' . th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   489
      (is "?L = ?R")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   490
      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   491
    also have "\<dots> = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   492
      Max ` {((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) | th' . th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   493
      (is "_ = Max ` ?C")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   494
      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   495
    finally have "Max ?L = Max (Max ` ?C)" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   496
    also have "\<dots> = Max (\<Union> ?C)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   497
    proof(rule Max_Union[symmetric])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   498
      from children_dependents[of s th] finite_threads[OF vt] and dependents_threads[OF vt, of th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   499
      show "finite {(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   500
        by (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   501
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   502
      from False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   503
      show "{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th} \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   504
        by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   505
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   506
      show "\<And>A. A \<in> {(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th} \<Longrightarrow>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   507
        finite A \<and> A \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   508
        apply (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   509
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   510
        fix th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   511
        from finite_threads[OF vt] and dependents_threads[OF vt, of th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   512
        show "finite ((\<lambda>th. preced th s) ` dependents (wq s) th')" by (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   513
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   514
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   515
    also have "\<dots> = Max ((\<lambda>th. preced th s) ` dependents (wq s) th)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   516
      (is "Max ?A = Max ?B")
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
      have "?A = ?B"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   519
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   520
        show "\<Union>{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   521
                    \<subseteq> (\<lambda>th. preced th s) ` dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   522
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   523
          fix x 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   524
          assume "x \<in> \<Union>{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   525
          then obtain th' where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   526
             th'_in: "th' \<in> children s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   527
            and x_in: "x \<in> ?f ` ({th'} \<union> dependents (wq s) th')" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   528
          hence "x = ?f th' \<or> x \<in> (?f ` dependents (wq s) th')" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   529
          thus "x \<in> ?f ` dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   530
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   531
            assume "x = preced th' s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   532
            with th'_in and children_dependents
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   533
            show "x \<in> (\<lambda>th. preced th s) ` dependents (wq s) th" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   534
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   535
            assume "x \<in> (\<lambda>th. preced th s) ` dependents (wq s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   536
            moreover note th'_in
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   537
            ultimately show " x \<in> (\<lambda>th. preced th s) ` dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   538
              by (unfold cs_dependents_def children_def child_def, auto simp:eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   539
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   540
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   541
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   542
        show "?f ` dependents (wq s) th
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   543
           \<subseteq> \<Union>{?f ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   544
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   545
          fix x 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   546
          assume x_in: "x \<in> (\<lambda>th. preced th s) ` dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   547
          then obtain th' where
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   548
            eq_x: "x = ?f th'" and dp: "(Th th', Th th) \<in> (depend s)^+" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   549
            by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   550
          from depend_children[OF dp]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   551
          have "th' \<in> children s th \<or> (\<exists>th3. th3 \<in> children s th \<and> (Th th', Th th3) \<in> (depend s)\<^sup>+)" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   552
          thus "x \<in> \<Union>{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   553
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   554
            assume "th' \<in> children s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   555
            with eq_x
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   556
            show "x \<in> \<Union>{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   557
              by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   558
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   559
            assume "\<exists>th3. th3 \<in> children s th \<and> (Th th', Th th3) \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   560
            then obtain th3 where th3_in: "th3 \<in> children s th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   561
              and dp3: "(Th th', Th th3) \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   562
            show "x \<in> \<Union>{(\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th') |th'. th' \<in> children s th}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   563
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   564
              from dp3
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   565
              have "th' \<in> dependents (wq s) th3"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   566
                by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   567
              with eq_x th3_in show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   568
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   569
          qed          
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   570
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   571
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   572
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   573
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   574
    finally have "Max ((\<lambda>th. preced th s) ` dependents (wq s) th) = Max (?L)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   575
      (is "?X = ?Y") by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   576
    moreover have "Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th)) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   577
                   max (?f th) ?X" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   578
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   579
      have "Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th)) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   580
            Max ({?f th} \<union> ?f ` (dependents (wq s) th))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   581
      also have "\<dots> = max (Max {?f th}) (Max (?f ` (dependents (wq s) th)))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   582
      proof(rule Max_Un, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   583
        from finite_threads[OF vt] and dependents_threads[OF vt, of th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   584
        show "finite ((\<lambda>th. preced th s) ` dependents (wq s) th)" by (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   585
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   586
        assume "dependents (wq s) th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   587
        with False and children_dependents show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   588
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   589
      also have "\<dots> = max (?f th) ?X" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   590
      finally show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   591
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   592
    moreover have "Max ({preced th s} \<union> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   593
                     (\<lambda>th. Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th))) ` children s th) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   594
                   max (?f th) ?Y"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   595
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   596
      have "Max ({preced th s} \<union> 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   597
                     (\<lambda>th. Max ((\<lambda>th. preced th s) ` ({th} \<union> dependents (wq s) th))) ` children s th) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   598
            max (Max {preced th s}) ?Y"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   599
      proof(rule Max_Un, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   600
        from finite_threads[OF vt] dependents_threads[OF vt, of th] children_dependents [of s th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   601
        show "finite ((\<lambda>th. Max (insert (preced th s) ((\<lambda>th. preced th s) ` dependents (wq s) th))) ` 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   602
                       children s th)" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   603
          by (auto simp:finite_subset)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   604
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   605
        assume "children s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   606
        with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   607
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   608
      thus ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   609
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   610
    ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   611
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   612
    case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   613
    moreover have "dependents (wq s) th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   614
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   615
      { fix th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   616
        assume "th' \<in> dependents (wq s) th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   617
        hence " (Th th', Th th) \<in> (depend s)\<^sup>+" by (simp add:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   618
        from depend_children[OF this] and True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   619
        have "False" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   620
      } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   621
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   622
    ultimately show ?thesis by auto
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
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   625
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   626
definition cps:: "state \<Rightarrow> (thread \<times> precedence) set"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   627
where "cps s = {(th, cp s th) | th . th \<in> threads s}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   628
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   629
locale step_set_cps =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   630
  fixes s' th prio s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   631
  defines s_def : "s \<equiv> (Set th prio#s')"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   632
  assumes vt_s: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   633
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   634
context step_set_cps 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   635
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   636
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   637
lemma eq_preced:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   638
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   639
  assumes "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   640
  shows "preced th' s = preced th' s'"
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
  from assms show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   643
    by (unfold s_def, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   644
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   645
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   646
lemma eq_dep: "depend s = depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   647
  by (unfold s_def depend_set_unchanged, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   648
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   649
lemma eq_cp_pre:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   650
  fixes th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   651
  assumes neq_th: "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   652
  and nd: "th \<notin> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   653
  shows "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   654
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   655
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   656
  have eq_dp: "\<And> th. dependents (wq s) th = dependents (wq s') th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   657
    by (unfold cs_dependents_def, auto simp:eq_dep eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   658
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   659
    fix th1 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   660
    assume "th1 \<in> {th'} \<union> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   661
    hence "th1 = th' \<or> th1 \<in> dependents (wq s') th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   662
    hence "preced th1 s = preced th1 s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   663
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   664
      assume "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   665
      with eq_preced[OF neq_th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   666
      show "preced th1 s = preced th1 s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   667
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   668
      assume "th1 \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   669
      with nd and eq_dp have "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   670
        by (auto simp:eq_depend cs_dependents_def s_dependents_def eq_dep)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   671
      from eq_preced[OF this] show "preced th1 s = preced th1 s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   672
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   673
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   674
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   675
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   676
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   677
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   678
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   679
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   680
lemma no_dependents:
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   681
  assumes "th' \<noteq> th"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   682
  shows "th \<notin> dependents s th'"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   683
proof
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   684
  assume h: "th \<in> dependents s th'"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   685
  from step_back_step [OF vt_s[unfolded s_def]]
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   686
  have "step s' (Set th prio)" .
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   687
  hence "th \<in> runing s'" by (cases, simp)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   688
  hence rd_th: "th \<in> readys s'" 
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   689
    by (simp add:readys_def runing_def)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   690
  from h have "(Th th, Th th') \<in> (depend s')\<^sup>+"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   691
    by (unfold s_dependents_def, unfold eq_depend, unfold eq_dep, auto)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   692
  from tranclD[OF this]
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   693
  obtain z where "(Th th, z) \<in> depend s'" by auto
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   694
  with rd_th show "False"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   695
    apply (case_tac z, auto simp:readys_def s_waiting_def s_depend_def s_waiting_def cs_waiting_def)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   696
    by (fold wq_def, blast)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   697
qed
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   698
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   699
(* Result improved *)
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   700
lemma eq_cp:
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   701
 fixes th' 
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   702
  assumes neq_th: "th' \<noteq> th"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   703
  shows "cp s th' = cp s' th'"
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   704
proof(rule eq_cp_pre [OF neq_th])
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   705
  from no_dependents[OF neq_th] 
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   706
  show "th \<notin> dependents s th'" .
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   707
qed
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   708
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   709
lemma eq_up:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   710
  fixes th' th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   711
  assumes dp1: "th \<in> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   712
  and dp2: "th' \<in> dependents s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   713
  and eq_cps: "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   714
  shows "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   715
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   716
  from dp2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   717
  have "(Th th', Th th'') \<in> (depend (wq s))\<^sup>+" by (simp add:s_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   718
  from depend_child[OF vt_s this[unfolded eq_depend]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   719
  have ch_th': "(Th th', Th th'') \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   720
  moreover { fix n th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   721
    have "\<lbrakk>(Th th', n) \<in> (child s)^+\<rbrakk> \<Longrightarrow>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   722
                   (\<forall> th'' . n = Th th'' \<longrightarrow> cp s th'' = cp s' th'')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   723
    proof(erule trancl_induct, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   724
      fix y th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   725
      assume y_ch: "(y, Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   726
        and ih: "\<forall>th''. y = Th th'' \<longrightarrow> cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   727
        and ch': "(Th th', y) \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   728
      from y_ch obtain thy where eq_y: "y = Th thy" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   729
      with ih have eq_cpy:"cp s thy = cp s' thy" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   730
      from dp1 have "(Th th, Th th') \<in> (depend s)^+" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   731
      moreover from child_depend_p[OF ch'] and eq_y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   732
      have "(Th th', Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   733
      ultimately have dp_thy: "(Th th, Th thy) \<in> (depend s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   734
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   735
        apply (subst cp_rec[OF vt_s])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   736
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   737
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   738
        proof(rule eq_preced)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   739
          show "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   740
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   741
            assume "th'' = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   742
            with dp_thy y_ch[unfolded eq_y] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   743
            have "(Th th, Th th) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   744
              by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   745
            with wf_trancl[OF wf_depend[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   746
            show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   747
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   748
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   749
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   750
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   751
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   752
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   753
          proof(cases "th1 = thy")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   754
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   755
            with eq_cpy show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   756
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   757
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   758
            have neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   759
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   760
              assume eq_th1: "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   761
              with dp_thy have "(Th th1, Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   762
              from children_no_dep[OF vt_s _ _ this] and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   763
              th1_in y_ch eq_y show False by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   764
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   765
            have "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   766
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   767
              assume h:"th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   768
              from eq_y dp_thy have "th \<in> dependents s thy" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   769
              from dependents_child_unique[OF vt_s _ _ h this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   770
              th1_in y_ch eq_y have "th1 = thy" by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   771
              with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   772
            qed
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   773
            from eq_cp_pre[OF neq_th1 this]
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   774
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   775
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   776
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   777
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   778
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   779
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   780
          by (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   781
        ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   782
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   783
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   784
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   785
      fix th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   786
      assume dp': "(Th th', Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   787
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   788
        apply (subst cp_rec[OF vt_s])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   789
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   790
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   791
        proof(rule eq_preced)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   792
          show "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   793
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   794
            assume "th'' = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   795
            with dp1 dp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   796
            have "(Th th, Th th) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   797
              by (auto simp:child_def s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   798
            with wf_trancl[OF wf_depend[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   799
            show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   800
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   801
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   802
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   803
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   804
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   805
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   806
          proof(cases "th1 = th'")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   807
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   808
            with eq_cps show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   809
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   810
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   811
            have neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   812
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   813
              assume eq_th1: "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   814
              with dp1 have "(Th th1, Th th') \<in> (depend s)^+" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   815
                by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   816
              from children_no_dep[OF vt_s _ _ this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   817
              th1_in dp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   818
              show False by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   819
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   820
            thus ?thesis
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   821
            proof(rule eq_cp_pre)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   822
              show "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   823
              proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   824
                assume "th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   825
                from dependents_child_unique[OF vt_s _ _ this dp1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   826
                th1_in dp' have "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   827
                  by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   828
                with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   829
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   830
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   831
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   832
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   833
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   834
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   835
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   836
          by (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   837
        ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   838
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   839
      qed     
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   840
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   841
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   842
  ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   843
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   844
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   845
lemma eq_up_self:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   846
  fixes th' th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   847
  assumes dp: "th \<in> dependents s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   848
  and eq_cps: "cp s th = cp s' th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   849
  shows "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   850
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   851
  from dp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   852
  have "(Th th, Th th'') \<in> (depend (wq s))\<^sup>+" by (simp add:s_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   853
  from depend_child[OF vt_s this[unfolded eq_depend]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   854
  have ch_th': "(Th th, Th th'') \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   855
  moreover { fix n th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   856
    have "\<lbrakk>(Th th, n) \<in> (child s)^+\<rbrakk> \<Longrightarrow>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   857
                   (\<forall> th'' . n = Th th'' \<longrightarrow> cp s th'' = cp s' th'')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   858
    proof(erule trancl_induct, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   859
      fix y th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   860
      assume y_ch: "(y, Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   861
        and ih: "\<forall>th''. y = Th th'' \<longrightarrow> cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   862
        and ch': "(Th th, y) \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   863
      from y_ch obtain thy where eq_y: "y = Th thy" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   864
      with ih have eq_cpy:"cp s thy = cp s' thy" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   865
      from child_depend_p[OF ch'] and eq_y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   866
      have dp_thy: "(Th th, Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   867
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   868
        apply (subst cp_rec[OF vt_s])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   869
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   870
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   871
        proof(rule eq_preced)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   872
          show "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   873
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   874
            assume "th'' = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   875
            with dp_thy y_ch[unfolded eq_y] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   876
            have "(Th th, Th th) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   877
              by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   878
            with wf_trancl[OF wf_depend[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   879
            show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   880
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   881
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   882
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   883
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   884
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   885
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   886
          proof(cases "th1 = thy")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   887
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   888
            with eq_cpy show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   889
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   890
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   891
            have neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   892
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   893
              assume eq_th1: "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   894
              with dp_thy have "(Th th1, Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   895
              from children_no_dep[OF vt_s _ _ this] and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   896
              th1_in y_ch eq_y show False by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   897
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   898
            have "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   899
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   900
              assume h:"th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   901
              from eq_y dp_thy have "th \<in> dependents s thy" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   902
              from dependents_child_unique[OF vt_s _ _ h this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   903
              th1_in y_ch eq_y have "th1 = thy" by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   904
              with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   905
            qed
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   906
            from eq_cp_pre[OF neq_th1 this]
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   907
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   908
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   909
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   910
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   911
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   912
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   913
          by (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   914
        ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   915
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   916
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   917
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   918
      fix th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   919
      assume dp': "(Th th, Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   920
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   921
        apply (subst cp_rec[OF vt_s])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   922
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   923
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   924
        proof(rule eq_preced)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   925
          show "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   926
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   927
            assume "th'' = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   928
            with dp dp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   929
            have "(Th th, Th th) \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   930
              by (auto simp:child_def s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   931
            with wf_trancl[OF wf_depend[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   932
            show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   933
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   934
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   935
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   936
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   937
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   938
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   939
          proof(cases "th1 = th")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   940
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   941
            with eq_cps show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   942
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   943
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   944
            assume neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   945
            thus ?thesis
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
   946
            proof(rule eq_cp_pre)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   947
              show "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   948
              proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   949
                assume "th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   950
                hence "(Th th, Th th1) \<in> (depend s)^+" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   951
                from children_no_dep[OF vt_s _ _ this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   952
                and th1_in dp' show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   953
                  by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   954
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   955
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   956
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   957
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   958
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   959
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   960
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   961
          by (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   962
        ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   963
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   964
      qed     
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   965
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   966
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   967
  ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   968
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   969
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   970
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   971
lemma next_waiting:
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   972
  assumes vt: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   973
  and nxt: "next_th s th cs th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   974
  shows "waiting s th' cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   975
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   976
  from assms show ?thesis
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
   977
    apply (auto simp:next_th_def s_waiting_def[folded wq_def])
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   978
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   979
    fix rest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   980
    assume 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
   981
      and eq_wq: "wq s cs = th # rest"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   982
      and ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   983
    have "set (SOME q. distinct q \<and> set q = set rest) = set rest" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   984
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   985
      from wq_distinct[OF vt, of cs] eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   986
      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   987
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   988
      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
   989
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   990
    with ni
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   991
    have "hd (SOME q. distinct q \<and> set q = set rest) \<notin>  set (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   992
      by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   993
    moreover have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   994
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   995
      from wq_distinct[OF vt, of cs] eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   996
      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   997
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   998
      from ne show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   999
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1000
    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
  1001
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1002
    fix rest
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1003
    assume 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
  1004
      and ne: "rest \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1005
    have "(SOME q. distinct q \<and> set q = set rest) \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1006
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1007
      from wq_distinct[OF vt, of cs] eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1008
      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1009
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1010
      from ne show "\<And>x. distinct x \<and> set x = set rest \<Longrightarrow> x \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1011
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1012
    hence "hd (SOME q. distinct q \<and> set q = set rest) \<in> set (SOME q. distinct q \<and> set q = set rest)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1013
      by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1014
    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
  1015
    proof(rule someI2)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1016
      from wq_distinct[OF vt, of cs] eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1017
      show "distinct rest \<and> set rest = set rest" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1018
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1019
      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
  1020
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1021
    ultimately have "hd (SOME q. distinct q \<and> set q = set rest) \<in> set rest" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1022
    with eq_wq and wq_distinct[OF vt, of cs]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1023
    show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1024
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1025
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1026
340
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
  1027
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
  1028
0244e76df2ca The result for "Set" operation gets strengthened.
zhang
parents: 336
diff changeset
  1029
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1030
locale step_v_cps =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1031
  fixes s' th cs s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1032
  defines s_def : "s \<equiv> (V th cs#s')"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1033
  assumes vt_s: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1034
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1035
locale step_v_cps_nt = step_v_cps +
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1036
  fixes th'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1037
  assumes nt: "next_th s' th cs th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1038
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1039
context step_v_cps_nt
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1040
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1041
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1042
lemma depend_s:
312
09281ccb31bd added implementation section
urbanc
parents: 298
diff changeset
  1043
  "depend s = (depend s' - {(Cs cs, Th th), (Th th', Cs cs)}) \<union>
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1044
                                         {(Cs cs, Th th')}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1045
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1046
  from step_depend_v[OF vt_s[unfolded s_def], folded s_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1047
    and nt show ?thesis  by (auto intro:next_th_unique)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1048
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1049
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1050
lemma dependents_kept:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1051
  fixes th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1052
  assumes neq1: "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1053
  and neq2: "th'' \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1054
  shows "dependents (wq s) th'' = dependents (wq s') th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1055
proof(auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1056
  fix x
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1057
  assume "x \<in> dependents (wq s) th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1058
  hence dp: "(Th x, Th th'') \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1059
    by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1060
  { fix n
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1061
    have "(n, Th th'') \<in> (depend s)^+ \<Longrightarrow>  (n, Th th'') \<in> (depend s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1062
    proof(induct rule:converse_trancl_induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1063
      fix y 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1064
      assume "(y, Th th'') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1065
      with depend_s neq1 neq2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1066
      have "(y, Th th'') \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1067
      thus "(y, Th th'') \<in> (depend s')\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1068
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1069
      fix y z 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1070
      assume yz: "(y, z) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1071
        and ztp: "(z, Th th'') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1072
        and ztp': "(z, Th th'') \<in> (depend s')\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1073
      have "y \<noteq> Cs cs \<and> y \<noteq> Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1074
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1075
        show "y \<noteq> Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1076
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1077
          assume eq_y: "y = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1078
          with yz have dp_yz: "(Cs cs, z) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1079
          from depend_s
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1080
          have cst': "(Cs cs, Th th') \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1081
          from unique_depend[OF vt_s this dp_yz] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1082
          have eq_z: "z = Th th'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1083
          with ztp have "(Th th', Th th'') \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1084
          from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1085
          obtain cs' where dp'': "(Th th', Cs cs') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1086
            by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1087
          with depend_s have dp': "(Th th', Cs cs') \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1088
          from dp'' eq_y yz eq_z have "(Cs cs, Cs cs') \<in> (depend s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1089
          moreover have "cs' = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1090
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1091
            from next_waiting[OF step_back_vt[OF vt_s[unfolded s_def]] nt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1092
            have "(Th th', Cs cs) \<in> depend s'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1093
              by (auto simp:s_waiting_def wq_def s_depend_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1094
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] this dp']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1095
            show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1096
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1097
          ultimately have "(Cs cs, Cs cs) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1098
          moreover note wf_trancl[OF wf_depend[OF vt_s]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1099
          ultimately show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1100
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1101
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1102
        show "y \<noteq> Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1103
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1104
          assume eq_y: "y = Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1105
          with yz have dps: "(Th th', z) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1106
          with depend_s have dps': "(Th th', z) \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1107
          have "z = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1108
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1109
            from next_waiting[OF step_back_vt[OF vt_s[unfolded s_def]] nt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1110
            have "(Th th', Cs cs) \<in> depend s'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1111
              by (auto simp:s_waiting_def wq_def s_depend_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1112
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] dps' this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1113
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1114
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1115
          with dps depend_s show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1116
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1117
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1118
      with depend_s yz have "(y, z) \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1119
      with ztp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1120
      show "(y, Th th'') \<in> (depend s')\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1121
    qed    
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1122
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1123
  from this[OF dp]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1124
  show "x \<in> dependents (wq s') th''" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1125
    by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1126
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1127
  fix x
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1128
  assume "x \<in> dependents (wq s') th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1129
  hence dp: "(Th x, Th th'') \<in> (depend s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1130
    by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1131
  { fix n
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1132
    have "(n, Th th'') \<in> (depend s')^+ \<Longrightarrow>  (n, Th th'') \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1133
    proof(induct rule:converse_trancl_induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1134
      fix y 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1135
      assume "(y, Th th'') \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1136
      with depend_s neq1 neq2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1137
      have "(y, Th th'') \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1138
      thus "(y, Th th'') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1139
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1140
      fix y z 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1141
      assume yz: "(y, z) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1142
        and ztp: "(z, Th th'') \<in> (depend s')\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1143
        and ztp': "(z, Th th'') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1144
      have "y \<noteq> Cs cs \<and> y \<noteq> Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1145
      proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1146
        show "y \<noteq> Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1147
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1148
          assume eq_y: "y = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1149
          with yz have dp_yz: "(Cs cs, z) \<in> depend s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1150
          from this have eq_z: "z = Th th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1151
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1152
            from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1153
            have "(Cs cs, Th th) \<in> depend s'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1154
              by(cases, auto simp: wq_def s_depend_def cs_holding_def s_holding_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1155
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] this dp_yz]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1156
            show ?thesis by simp
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
          from converse_tranclE[OF ztp]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1159
          obtain u where "(z, u) \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1160
          moreover 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1161
          from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1162
          have "th \<in> readys s'" by (cases, simp add:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1163
          moreover note eq_z
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1164
          ultimately show False 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1165
            by (auto simp:readys_def wq_def s_depend_def s_waiting_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1166
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1167
      next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1168
        show "y \<noteq> Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1169
        proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1170
          assume eq_y: "y = Th th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1171
          with yz have dps: "(Th th', z) \<in> depend s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1172
          have "z = Cs cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1173
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1174
            from next_waiting[OF step_back_vt[OF vt_s[unfolded s_def]] nt]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1175
            have "(Th th', Cs cs) \<in> depend s'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1176
              by (auto simp:s_waiting_def wq_def s_depend_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1177
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] dps this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1178
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1179
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1180
          with ztp have cs_i: "(Cs cs, Th th'') \<in>  (depend s')\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1181
          from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1182
          have cs_th: "(Cs cs, Th th) \<in> depend s'"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1183
            by(cases, auto simp: s_depend_def wq_def cs_holding_def s_holding_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1184
          have "(Cs cs, Th th'') \<notin>  depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1185
          proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1186
            assume "(Cs cs, Th th'') \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1187
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] this cs_th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1188
            and neq1 show "False" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1189
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1190
          with converse_tranclE[OF cs_i]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1191
          obtain u where cu: "(Cs cs, u) \<in> depend s'"  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1192
            and u_t: "(u, Th th'') \<in> (depend s')\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1193
          have "u = Th th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1194
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1195
            from unique_depend[OF step_back_vt[OF vt_s[unfolded s_def]] cu cs_th]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1196
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1197
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1198
          with u_t have "(Th th, Th th'') \<in> (depend s')\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1199
          from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1200
          obtain v where "(Th th, v) \<in> (depend s')" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1201
          moreover from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1202
          have "th \<in> readys s'" by (cases, simp add:runing_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1203
          ultimately show False 
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1204
            by (auto simp:readys_def wq_def s_depend_def s_waiting_def cs_waiting_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1205
        qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1206
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1207
      with depend_s yz have "(y, z) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1208
      with ztp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1209
      show "(y, Th th'') \<in> (depend s)\<^sup>+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1210
    qed    
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1211
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1212
  from this[OF dp]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1213
  show "x \<in> dependents (wq s) th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1214
    by (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1215
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1216
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1217
lemma cp_kept:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1218
  fixes th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1219
  assumes neq1: "th'' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1220
  and neq2: "th'' \<noteq> th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1221
  shows "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1222
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1223
  from dependents_kept[OF neq1 neq2]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1224
  have "dependents (wq s) th'' = dependents (wq s') th''" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1225
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1226
    fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1227
    assume "th1 \<in> dependents (wq s) th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1228
    have "preced th1 s = preced th1 s'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1229
      by (unfold s_def, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1230
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1231
  moreover have "preced th'' s = preced th'' s'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1232
    by (unfold s_def, auto simp:preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1233
  ultimately have "((\<lambda>th. preced th s) ` ({th''} \<union> dependents (wq s) th'')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1234
    ((\<lambda>th. preced th s') ` ({th''} \<union> dependents (wq s') th''))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1235
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1236
  thus ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1237
    by (unfold cp_eq_cpreced cpreced_def, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1238
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1239
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1240
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1241
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1242
locale step_v_cps_nnt = step_v_cps +
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1243
  assumes nnt: "\<And> th'. (\<not> next_th s' th cs th')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1244
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1245
context step_v_cps_nnt
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1246
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1247
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1248
lemma nw_cs: "(Th th1, Cs cs) \<notin> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1249
proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1250
  assume "(Th th1, Cs cs) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1251
  thus "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1252
    apply (auto simp:s_depend_def cs_waiting_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1253
  proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1254
    assume h1: "th1 \<in> set (wq s' cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1255
      and h2: "th1 \<noteq> hd (wq s' cs)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1256
    from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1257
    show "False"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1258
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1259
      assume "holding s' th cs" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1260
      then obtain rest where
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1261
        eq_wq: "wq s' cs = th#rest"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1262
        apply (unfold s_holding_def wq_def[symmetric])
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1263
        by (case_tac "(wq s' cs)", auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1264
      with h1 h2 have ne: "rest \<noteq> []" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1265
      with eq_wq
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1266
      have "next_th s' th cs (hd (SOME q. distinct q \<and> set q = set rest))"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1267
        by(unfold next_th_def, rule_tac x = "rest" in exI, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1268
      with nnt 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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1273
lemma depend_s: "depend s = depend s' - {(Cs cs, Th th)}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1274
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1275
  from nnt and  step_depend_v[OF vt_s[unfolded s_def], folded s_def]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1276
  show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1277
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1278
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1279
lemma child_kept_left:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1280
  assumes 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1281
  "(n1, n2) \<in> (child s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1282
  shows "(n1, n2) \<in> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1283
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1284
  from assms show ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1285
  proof(induct rule: converse_trancl_induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1286
    case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1287
    from base obtain th1 cs1 th2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1288
      where h1: "(Th th1, Cs cs1) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1289
      and h2: "(Cs cs1, Th th2) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1290
      and eq_y: "y = Th th1" and eq_n2: "n2 = Th th2"  by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1291
    have "cs1 \<noteq> cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1292
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1293
      assume eq_cs: "cs1 = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1294
      with h1 have "(Th th1, Cs cs1) \<in> depend s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1295
      with nw_cs eq_cs show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1296
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1297
    with h1 h2 depend_s have 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1298
      h1': "(Th th1, Cs cs1) \<in> depend s" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1299
      h2': "(Cs cs1, Th th2) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1300
    hence "(Th th1, Th th2) \<in> child s" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1301
    with eq_y eq_n2 have "(y, n2) \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1302
    thus ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1303
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1304
    case (step y z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1305
    have "(y, z) \<in> child s'" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1306
    then obtain th1 cs1 th2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1307
      where h1: "(Th th1, Cs cs1) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1308
      and h2: "(Cs cs1, Th th2) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1309
      and eq_y: "y = Th th1" and eq_z: "z = Th th2"  by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1310
    have "cs1 \<noteq> cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1311
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1312
      assume eq_cs: "cs1 = cs"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1313
      with h1 have "(Th th1, Cs cs1) \<in> depend s'" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1314
      with nw_cs eq_cs show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1315
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1316
    with h1 h2 depend_s have 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1317
      h1': "(Th th1, Cs cs1) \<in> depend s" and
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1318
      h2': "(Cs cs1, Th th2) \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1319
    hence "(Th th1, Th th2) \<in> child s" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1320
    with eq_y eq_z have "(y, z) \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1321
    moreover have "(z, n2) \<in> (child s)^+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1322
    ultimately show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1323
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1324
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1325
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1326
lemma  child_kept_right:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1327
  assumes
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1328
  "(n1, n2) \<in> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1329
  shows "(n1, n2) \<in> (child s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1330
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1331
  from assms show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1332
  proof(induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1333
    case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1334
    from base and depend_s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1335
    have "(n1, y) \<in> child s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1336
      by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1337
    thus ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1338
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1339
    case (step y z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1340
    have "(y, z) \<in> child s" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1341
    with depend_s have "(y, z) \<in> child s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1342
      by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1343
    moreover have "(n1, y) \<in> (child s')\<^sup>+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1344
    ultimately show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1345
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1346
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1347
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1348
lemma eq_child: "(child s)^+ = (child s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1349
  by (insert child_kept_left child_kept_right, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1350
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1351
lemma eq_cp:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1352
  fixes th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1353
  shows "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1354
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1355
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1356
  have eq_dp: "\<And> th. dependents (wq s) th = dependents (wq s') th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1357
    apply (unfold cs_dependents_def, unfold eq_depend)
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 eq_child
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1360
    have "\<And>th. {th'. (Th th', Th th) \<in> (child s)\<^sup>+} = {th'. (Th th', Th th) \<in> (child s')\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1361
      by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1362
    with child_depend_eq[OF vt_s] child_depend_eq[OF step_back_vt[OF vt_s[unfolded s_def]]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1363
    show "\<And>th. {th'. (Th th', Th th) \<in> (depend s)\<^sup>+} = {th'. (Th th', Th th) \<in> (depend s')\<^sup>+}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1364
      by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1365
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1366
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1367
    fix th1 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1368
    assume "th1 \<in> {th'} \<union> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1369
    hence "th1 = th' \<or> th1 \<in> dependents (wq s') th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1370
    hence "preced th1 s = preced th1 s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1371
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1372
      assume "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1373
      show "preced th1 s = preced th1 s'" by (simp add:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1374
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1375
      assume "th1 \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1376
      show "preced th1 s = preced th1 s'" by (simp add:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1377
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1378
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1379
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1380
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1381
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1382
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
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
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1386
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1387
locale step_P_cps =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1388
  fixes s' th cs s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1389
  defines s_def : "s \<equiv> (P th cs#s')"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1390
  assumes vt_s: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1391
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1392
locale step_P_cps_ne =step_P_cps +
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1393
  assumes ne: "wq s' cs \<noteq> []"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1394
272
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1395
locale step_P_cps_e =step_P_cps +
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1396
  assumes ee: "wq s' cs = []"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1397
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1398
context step_P_cps_e
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1399
begin
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1400
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1401
lemma depend_s: "depend s = depend s' \<union> {(Cs cs, Th th)}"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1402
proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1403
  from ee and  step_depend_p[OF vt_s[unfolded s_def], folded s_def]
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1404
  show ?thesis by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1405
qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1406
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1407
lemma child_kept_left:
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1408
  assumes 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1409
  "(n1, n2) \<in> (child s')^+"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1410
  shows "(n1, n2) \<in> (child s)^+"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1411
proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1412
  from assms show ?thesis 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1413
  proof(induct rule: converse_trancl_induct)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1414
    case (base y)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1415
    from base obtain th1 cs1 th2
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1416
      where h1: "(Th th1, Cs cs1) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1417
      and h2: "(Cs cs1, Th th2) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1418
      and eq_y: "y = Th th1" and eq_n2: "n2 = Th th2"  by (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1419
    have "cs1 \<noteq> cs"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1420
    proof
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1421
      assume eq_cs: "cs1 = cs"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1422
      with h1 have "(Th th1, Cs cs) \<in> depend s'" by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1423
      with ee show False
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1424
        by (auto simp:s_depend_def cs_waiting_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1425
    qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1426
    with h1 h2 depend_s have 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1427
      h1': "(Th th1, Cs cs1) \<in> depend s" and
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1428
      h2': "(Cs cs1, Th th2) \<in> depend s" by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1429
    hence "(Th th1, Th th2) \<in> child s" by (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1430
    with eq_y eq_n2 have "(y, n2) \<in> child s" by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1431
    thus ?case by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1432
  next
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1433
    case (step y z)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1434
    have "(y, z) \<in> child s'" by fact
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1435
    then obtain th1 cs1 th2
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1436
      where h1: "(Th th1, Cs cs1) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1437
      and h2: "(Cs cs1, Th th2) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1438
      and eq_y: "y = Th th1" and eq_z: "z = Th th2"  by (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1439
    have "cs1 \<noteq> cs"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1440
    proof
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1441
      assume eq_cs: "cs1 = cs"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1442
      with h1 have "(Th th1, Cs cs) \<in> depend s'" by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1443
      with ee show False 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1444
        by (auto simp:s_depend_def cs_waiting_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1445
    qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1446
    with h1 h2 depend_s have 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1447
      h1': "(Th th1, Cs cs1) \<in> depend s" and
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1448
      h2': "(Cs cs1, Th th2) \<in> depend s" by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1449
    hence "(Th th1, Th th2) \<in> child s" by (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1450
    with eq_y eq_z have "(y, z) \<in> child s" by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1451
    moreover have "(z, n2) \<in> (child s)^+" by fact
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1452
    ultimately show ?case by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1453
  qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1454
qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1455
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1456
lemma  child_kept_right:
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1457
  assumes
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1458
  "(n1, n2) \<in> (child s)^+"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1459
  shows "(n1, n2) \<in> (child s')^+"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1460
proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1461
  from assms show ?thesis
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1462
  proof(induct)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1463
    case (base y)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1464
    from base and depend_s
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1465
    have "(n1, y) \<in> child s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1466
      apply (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1467
      proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1468
        fix th'
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1469
        assume "(Th th', Cs cs) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1470
        with ee have "False"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1471
          by (auto simp:s_depend_def cs_waiting_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1472
        thus "\<exists>cs. (Th th', Cs cs) \<in> depend s' \<and> (Cs cs, Th th) \<in> depend s'" by auto 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1473
      qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1474
    thus ?case by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1475
  next
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1476
    case (step y z)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1477
    have "(y, z) \<in> child s" by fact
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1478
    with depend_s have "(y, z) \<in> child s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1479
      apply (auto simp:child_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1480
      proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1481
        fix th'
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1482
        assume "(Th th', Cs cs) \<in> depend s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1483
        with ee have "False"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1484
          by (auto simp:s_depend_def cs_waiting_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1485
        thus "\<exists>cs. (Th th', Cs cs) \<in> depend s' \<and> (Cs cs, Th th) \<in> depend s'" by auto 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1486
      qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1487
    moreover have "(n1, y) \<in> (child s')\<^sup>+" by fact
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1488
    ultimately show ?case by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1489
  qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1490
qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1491
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1492
lemma eq_child: "(child s)^+ = (child s')^+"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1493
  by (insert child_kept_left child_kept_right, auto)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1494
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1495
lemma eq_cp:
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1496
  fixes th' 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1497
  shows "cp s th' = cp s' th'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1498
  apply (unfold cp_eq_cpreced cpreced_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1499
proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1500
  have eq_dp: "\<And> th. dependents (wq s) th = dependents (wq s') th"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1501
    apply (unfold cs_dependents_def, unfold eq_depend)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1502
  proof -
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1503
    from eq_child
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1504
    have "\<And>th. {th'. (Th th', Th th) \<in> (child s)\<^sup>+} = {th'. (Th th', Th th) \<in> (child s')\<^sup>+}"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1505
      by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1506
    with child_depend_eq[OF vt_s] child_depend_eq[OF step_back_vt[OF vt_s[unfolded s_def]]]
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1507
    show "\<And>th. {th'. (Th th', Th th) \<in> (depend s)\<^sup>+} = {th'. (Th th', Th th) \<in> (depend s')\<^sup>+}"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1508
      by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1509
  qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1510
  moreover {
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1511
    fix th1 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1512
    assume "th1 \<in> {th'} \<union> dependents (wq s') th'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1513
    hence "th1 = th' \<or> th1 \<in> dependents (wq s') th'" by auto
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1514
    hence "preced th1 s = preced th1 s'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1515
    proof
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1516
      assume "th1 = th'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1517
      show "preced th1 s = preced th1 s'" by (simp add:s_def preced_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1518
    next
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1519
      assume "th1 \<in> dependents (wq s') th'"
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1520
      show "preced th1 s = preced th1 s'" by (simp add:s_def preced_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1521
    qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1522
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1523
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1524
    by (auto simp:image_def)
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1525
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1526
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1527
qed
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1528
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1529
end
ee4611c1e13c All comments added.
zhang
parents: 262
diff changeset
  1530
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1531
context step_P_cps_ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1532
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1533
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1534
lemma depend_s: "depend s = depend s' \<union> {(Th th, Cs cs)}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1535
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1536
  from step_depend_p[OF vt_s[unfolded s_def]] and ne
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1537
  show ?thesis by (simp add:s_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1538
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1539
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1540
lemma eq_child_left:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1541
  assumes nd: "(Th th, Th th') \<notin> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1542
  shows "(n1, Th th') \<in> (child s)^+ \<Longrightarrow> (n1, Th th') \<in> (child s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1543
proof(induct rule:converse_trancl_induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1544
  case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1545
  from base obtain th1 cs1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1546
    where h1: "(Th th1, Cs cs1) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1547
    and h2: "(Cs cs1, Th th') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1548
    and eq_y: "y = Th th1"   by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1549
  have "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1550
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1551
    assume "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1552
    with base eq_y have "(Th th, Th th') \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1553
    with nd show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1554
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1555
  with h1 h2 depend_s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1556
  have h1': "(Th th1, Cs cs1) \<in> depend s'" and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1557
       h2': "(Cs cs1, Th th') \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1558
  with eq_y show ?case by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1559
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1560
  case (step y z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1561
  have yz: "(y, z) \<in> child s" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1562
  then obtain th1 cs1 th2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1563
    where h1: "(Th th1, Cs cs1) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1564
    and h2: "(Cs cs1, Th th2) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1565
    and eq_y: "y = Th th1" and eq_z: "z = Th th2"  by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1566
  have "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1567
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1568
    assume "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1569
    with yz eq_y have "(Th th, z) \<in> child s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1570
    moreover have "(z, Th th') \<in> (child s)^+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1571
    ultimately have "(Th th, Th th') \<in> (child s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1572
    with nd show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1573
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1574
  with h1 h2 depend_s have h1': "(Th th1, Cs cs1) \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1575
                       and h2': "(Cs cs1, Th th2) \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1576
  with eq_y eq_z have "(y, z) \<in> child s'" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1577
  moreover have "(z, Th th') \<in> (child s')^+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1578
  ultimately show ?case by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1579
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1580
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1581
lemma eq_child_right:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1582
  shows "(n1, Th th') \<in> (child s')^+ \<Longrightarrow> (n1, Th th') \<in> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1583
proof(induct rule:converse_trancl_induct)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1584
  case (base y)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1585
  with depend_s show ?case by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1586
next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1587
  case (step y z)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1588
  have "(y, z) \<in> child s'" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1589
  with depend_s have "(y, z) \<in> child s" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1590
  moreover have "(z, Th th') \<in> (child s)^+" by fact
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1591
  ultimately show ?case by auto
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
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1594
lemma eq_child:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1595
  assumes nd: "(Th th, Th th') \<notin> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1596
  shows "((n1, Th th') \<in> (child s)^+) = ((n1, Th th') \<in> (child s')^+)"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1597
  by (insert eq_child_left[OF nd] eq_child_right, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1598
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1599
lemma eq_cp:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1600
  fixes th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1601
  assumes nd: "th \<notin> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1602
  shows "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1603
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1604
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1605
  have nd': "(Th th, Th th') \<notin> (child s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1606
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1607
    assume "(Th th, Th th') \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1608
    with child_depend_eq[OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1609
    have "(Th th, Th th') \<in> (depend s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1610
    with nd show False 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1611
      by (simp add:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1612
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1613
  have eq_dp: "dependents (wq s) th' = dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1614
  proof(auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1615
    fix x assume " x \<in> dependents (wq s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1616
    thus "x \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1617
      apply (auto simp:cs_dependents_def eq_depend)
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 x, Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1620
      with  child_depend_eq[OF vt_s] have "(Th x, Th th') \<in> (child s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1621
      with eq_child[OF nd'] have "(Th x, Th th') \<in> (child s')^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1622
      with child_depend_eq[OF step_back_vt[OF vt_s[unfolded s_def]]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1623
      show "(Th x, Th th') \<in> (depend s')\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1624
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1625
  next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1626
    fix x assume "x \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1627
    thus "x \<in> dependents (wq s) th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1628
      apply (auto simp:cs_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1629
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1630
      assume "(Th x, Th th') \<in> (depend s')\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1631
      with child_depend_eq[OF step_back_vt[OF vt_s[unfolded s_def]]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1632
      have "(Th x, Th th') \<in> (child s')\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1633
      with eq_child[OF nd'] have "(Th x, Th th') \<in> (child s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1634
      with  child_depend_eq[OF vt_s]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1635
      show "(Th x, Th th') \<in> (depend s)\<^sup>+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1636
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1637
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1638
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1639
    fix th1 have "preced th1 s = preced th1 s'" by (simp add:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1640
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1641
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1642
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1643
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1644
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1645
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1646
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1647
lemma eq_up:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1648
  fixes th' th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1649
  assumes dp1: "th \<in> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1650
  and dp2: "th' \<in> dependents s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1651
  and eq_cps: "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1652
  shows "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1653
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1654
  from dp2
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1655
  have "(Th th', Th th'') \<in> (depend (wq s))\<^sup>+" by (simp add:s_dependents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1656
  from depend_child[OF vt_s this[unfolded eq_depend]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1657
  have ch_th': "(Th th', Th th'') \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1658
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1659
    fix n th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1660
    have "\<lbrakk>(Th th', n) \<in> (child s)^+\<rbrakk> \<Longrightarrow>
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1661
                   (\<forall> th'' . n = Th th'' \<longrightarrow> cp s th'' = cp s' th'')"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1662
    proof(erule trancl_induct, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1663
      fix y th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1664
      assume y_ch: "(y, Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1665
        and ih: "\<forall>th''. y = Th th'' \<longrightarrow> cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1666
        and ch': "(Th th', y) \<in> (child s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1667
      from y_ch obtain thy where eq_y: "y = Th thy" by (auto simp:child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1668
      with ih have eq_cpy:"cp s thy = cp s' thy" by blast
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1669
      from dp1 have "(Th th, Th th') \<in> (depend s)^+" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1670
      moreover from child_depend_p[OF ch'] and eq_y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1671
      have "(Th th', Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1672
      ultimately have dp_thy: "(Th th, Th thy) \<in> (depend s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1673
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1674
        apply (subst cp_rec[OF vt_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
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1677
          by (simp add:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1678
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1679
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1680
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1681
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1682
          proof(cases "th1 = thy")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1683
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1684
            with eq_cpy show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1685
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1686
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1687
            have neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1688
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1689
              assume eq_th1: "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1690
              with dp_thy have "(Th th1, Th thy) \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1691
              from children_no_dep[OF vt_s _ _ this] and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1692
              th1_in y_ch eq_y show False by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1693
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1694
            have "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1695
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1696
              assume h:"th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1697
              from eq_y dp_thy have "th \<in> dependents s thy" by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1698
              from dependents_child_unique[OF vt_s _ _ h this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1699
              th1_in y_ch eq_y have "th1 = thy" by (auto simp:children_def child_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1700
              with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1701
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1702
            from eq_cp[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1703
            show ?thesis .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1704
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1705
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1706
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1707
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1708
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1709
          apply (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1710
          apply (fold s_def, auto simp:depend_s)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1711
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1712
            assume "(Cs cs, Th th'') \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1713
            with depend_s have cs_th': "(Cs cs, Th th'') \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1714
            from dp1 have "(Th th, Th th') \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1715
              by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1716
            from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1717
            obtain cs1 where h1: "(Th th, Cs cs1) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1718
              and h2: "(Cs cs1 , Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1719
              by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1720
            have eq_cs: "cs1 = cs" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1721
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1722
              from depend_s have "(Th th, Cs cs) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1723
              from unique_depend[OF vt_s this h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1724
              show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1725
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1726
            have False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1727
            proof(rule converse_tranclE[OF h2])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1728
              assume "(Cs cs1, Th th') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1729
              with eq_cs have "(Cs cs, Th th') \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1730
              from unique_depend[OF vt_s this cs_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1731
              have "th' = th''" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1732
              with ch' y_ch have "(Th th'', Th th'') \<in> (child s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1733
              with wf_trancl[OF wf_child[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1734
              show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1735
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1736
              fix y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1737
              assume "(Cs cs1, y) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1738
                and ytd: " (y, Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1739
              with eq_cs have csy: "(Cs cs, y) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1740
              from unique_depend[OF vt_s this cs_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1741
              have "y = Th th''" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1742
              with ytd have "(Th th'', Th th') \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1743
              from depend_child[OF vt_s this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1744
              have "(Th th'', Th th') \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1745
              moreover from ch' y_ch have ch'': "(Th th', Th th'') \<in> (child s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1746
              ultimately have "(Th th'', Th th'') \<in> (child s)^+" by auto 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1747
              with wf_trancl[OF wf_child[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1748
              show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1749
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1750
            thus "\<exists>cs. (Th th, Cs cs) \<in> depend s' \<and> (Cs cs, Th th'') \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1751
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1752
          ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1753
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1754
      qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1755
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1756
      fix th''
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1757
      assume dp': "(Th th', Th th'') \<in> child s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1758
      show "cp s th'' = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1759
        apply (subst cp_rec[OF vt_s])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1760
      proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1761
        have "preced th'' s = preced th'' s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1762
          by (simp add:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1763
        moreover { 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1764
          fix th1
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1765
          assume th1_in: "th1 \<in> children s th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1766
          have "cp s th1 = cp s' th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1767
          proof(cases "th1 = th'")
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1768
            case True
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1769
            with eq_cps show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1770
          next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1771
            case False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1772
            have neq_th1: "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1773
            proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1774
              assume eq_th1: "th1 = th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1775
              with dp1 have "(Th th1, Th th') \<in> (depend s)^+" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1776
                by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1777
              from children_no_dep[OF vt_s _ _ this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1778
              th1_in dp'
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1779
              show False by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1780
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1781
            show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1782
            proof(rule eq_cp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1783
              show "th \<notin> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1784
              proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1785
                assume "th \<in> dependents s th1"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1786
                from dependents_child_unique[OF vt_s _ _ this dp1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1787
                th1_in dp' have "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1788
                  by (auto simp:children_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1789
                with False show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1790
              qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1791
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1792
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1793
        }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1794
        ultimately have "{preced th'' s} \<union> (cp s ` children s th'') = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1795
          {preced th'' s'} \<union> (cp s' ` children s th'')" by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1796
        moreover have "children s th'' = children s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1797
          apply (unfold children_def child_def s_def depend_set_unchanged, simp)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1798
          apply (fold s_def, auto simp:depend_s)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1799
          proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1800
            assume "(Cs cs, Th th'') \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1801
            with depend_s have cs_th': "(Cs cs, Th th'') \<in> depend s" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1802
            from dp1 have "(Th th, Th th') \<in> (depend s)^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1803
              by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1804
            from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1805
            obtain cs1 where h1: "(Th th, Cs cs1) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1806
              and h2: "(Cs cs1 , Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1807
              by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1808
            have eq_cs: "cs1 = cs" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1809
            proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1810
              from depend_s have "(Th th, Cs cs) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1811
              from unique_depend[OF vt_s this h1]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1812
              show ?thesis by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1813
            qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1814
            have False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1815
            proof(rule converse_tranclE[OF h2])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1816
              assume "(Cs cs1, Th th') \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1817
              with eq_cs have "(Cs cs, Th th') \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1818
              from unique_depend[OF vt_s this cs_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1819
              have "th' = th''" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1820
              with dp' have "(Th th'', Th th'') \<in> (child s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1821
              with wf_trancl[OF wf_child[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1822
              show False by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1823
            next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1824
              fix y
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1825
              assume "(Cs cs1, y) \<in> depend s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1826
                and ytd: " (y, Th th') \<in> (depend s)\<^sup>+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1827
              with eq_cs have csy: "(Cs cs, y) \<in> depend s" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1828
              from unique_depend[OF vt_s this cs_th']
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1829
              have "y = Th th''" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1830
              with ytd have "(Th th'', Th th') \<in> (depend s)^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1831
              from depend_child[OF vt_s this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1832
              have "(Th th'', Th th') \<in> (child s)\<^sup>+" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1833
              moreover from dp' have ch'': "(Th th', Th th'') \<in> (child s)^+" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1834
              ultimately have "(Th th'', Th th'') \<in> (child s)^+" by auto 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1835
              with wf_trancl[OF wf_child[OF vt_s]] 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1836
              show False 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
            thus "\<exists>cs. (Th th, Cs cs) \<in> depend s' \<and> (Cs cs, Th th'') \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1839
          qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1840
        ultimately show "Max ({preced th'' s} \<union> cp s ` children s th'') = cp s' th''"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1841
          by (simp add:cp_rec[OF step_back_vt[OF vt_s[unfolded s_def]]])
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1842
      qed     
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1843
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1844
  }
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1845
  ultimately show ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1846
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1847
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1848
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1849
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1850
locale step_create_cps =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1851
  fixes s' th prio s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1852
  defines s_def : "s \<equiv> (Create th prio#s')"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1853
  assumes vt_s: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1854
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1855
context step_create_cps
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1856
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1857
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1858
lemma eq_dep: "depend s = depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1859
  by (unfold s_def depend_create_unchanged, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1860
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1861
lemma eq_cp:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1862
  fixes th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1863
  assumes neq_th: "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1864
  shows "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1865
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1866
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1867
  have nd: "th \<notin> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1868
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1869
    assume "th \<in> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1870
    hence "(Th th, Th th') \<in> (depend s)^+" by (simp add:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1871
    with eq_dep have "(Th th, Th th') \<in> (depend s')^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1872
    from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1873
    obtain y where "(Th th, y) \<in> depend s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1874
    with dm_depend_threads[OF step_back_vt[OF vt_s[unfolded s_def]]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1875
    have in_th: "th \<in> threads s'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1876
    from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1877
    show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1878
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1879
      assume "th \<notin> threads s'" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1880
      with in_th show ?thesis by simp
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
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1883
  have eq_dp: "\<And> th. dependents (wq s) th = dependents (wq s') th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1884
    by (unfold cs_dependents_def, auto simp:eq_dep eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1885
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1886
    fix th1 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1887
    assume "th1 \<in> {th'} \<union> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1888
    hence "th1 = th' \<or> th1 \<in> dependents (wq s') th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1889
    hence "preced th1 s = preced th1 s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1890
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1891
      assume "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1892
      with neq_th
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1893
      show "preced th1 s = preced th1 s'" by (auto simp:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1894
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1895
      assume "th1 \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1896
      with nd and eq_dp have "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1897
        by (auto simp:eq_depend cs_dependents_def s_dependents_def eq_dep)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1898
      thus "preced th1 s = preced th1 s'" by (auto simp:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1899
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1900
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1901
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1902
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1903
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1904
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1905
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1906
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1907
lemma nil_dependents: "dependents s th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1908
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1909
  from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1910
  show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1911
  proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1912
    assume "th \<notin> threads s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1913
    from not_thread_holdents[OF step_back_vt[OF vt_s[unfolded s_def]] this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1914
    have hdn: " holdents s' th = {}" .
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1915
    have "dependents s' th = {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1916
    proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1917
      { assume "dependents s' th \<noteq> {}"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1918
        then obtain th' where dp: "(Th th', Th th) \<in> (depend s')^+"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1919
          by (auto simp:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1920
        from tranclE[OF this] obtain cs' where 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1921
          "(Cs cs', Th th) \<in> depend s'" by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1922
        with hdn
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1923
        have False by (auto simp:holdents_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1924
      } thus ?thesis by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1925
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1926
    thus ?thesis 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1927
      by (unfold s_def s_dependents_def eq_depend depend_create_unchanged, simp)
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 eq_cp_th: "cp s th = preced th s"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1932
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1933
  by (insert nil_dependents, unfold s_dependents_def cs_dependents_def, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1934
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1935
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1936
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1937
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1938
locale step_exit_cps =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1939
  fixes s' th prio s 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1940
  defines s_def : "s \<equiv> (Exit th#s')"
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1941
  assumes vt_s: "vt s"
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1942
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1943
context step_exit_cps
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1944
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1945
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1946
lemma eq_dep: "depend s = depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1947
  by (unfold s_def depend_exit_unchanged, auto)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1948
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1949
lemma eq_cp:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1950
  fixes th' 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1951
  assumes neq_th: "th' \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1952
  shows "cp s th' = cp s' th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1953
  apply (unfold cp_eq_cpreced cpreced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1954
proof -
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1955
  have nd: "th \<notin> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1956
  proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1957
    assume "th \<in> dependents s th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1958
    hence "(Th th, Th th') \<in> (depend s)^+" by (simp add:s_dependents_def eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1959
    with eq_dep have "(Th th, Th th') \<in> (depend s')^+" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1960
    from converse_tranclE[OF this]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1961
    obtain cs' where bk: "(Th th, Cs cs') \<in> depend s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1962
      by (auto simp:s_depend_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1963
    from step_back_step[OF vt_s[unfolded s_def]]
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1964
    show False
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1965
    proof(cases)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1966
      assume "th \<in> runing s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1967
      with bk show ?thesis
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1968
        apply (unfold runing_def readys_def s_waiting_def s_depend_def)
298
f2e0d031a395 completed model section; vt has only state as argument
urbanc
parents: 290
diff changeset
  1969
        by (auto simp:cs_waiting_def wq_def)
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1970
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1971
  qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1972
  have eq_dp: "\<And> th. dependents (wq s) th = dependents (wq s') th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1973
    by (unfold cs_dependents_def, auto simp:eq_dep eq_depend)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1974
  moreover {
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1975
    fix th1 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1976
    assume "th1 \<in> {th'} \<union> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1977
    hence "th1 = th' \<or> th1 \<in> dependents (wq s') th'" by auto
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1978
    hence "preced th1 s = preced th1 s'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1979
    proof
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1980
      assume "th1 = th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1981
      with neq_th
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1982
      show "preced th1 s = preced th1 s'" by (auto simp:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1983
    next
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1984
      assume "th1 \<in> dependents (wq s') th'"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1985
      with nd and eq_dp have "th1 \<noteq> th"
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1986
        by (auto simp:eq_depend cs_dependents_def s_dependents_def eq_dep)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1987
      thus "preced th1 s = preced th1 s'" by (auto simp:s_def preced_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1988
    qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1989
  } ultimately have "((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) = 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1990
                     ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1991
    by (auto simp:image_def)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1992
  thus "Max ((\<lambda>th. preced th s) ` ({th'} \<union> dependents (wq s) th')) =
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1993
        Max ((\<lambda>th. preced th s') ` ({th'} \<union> dependents (wq s') th'))" by simp
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1994
qed
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1995
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1996
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1997
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
  1998