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