src/HOL/UNITY/Extend.thy
author wenzelm
Sat, 17 Oct 2009 14:43:18 +0200
changeset 32960 69916a850301
parent 16417 9bc16273c2d4
child 32989 c28279b29ff1
permissions -rw-r--r--
eliminated hard tabulators, guessing at each author's individual tab-width; tuned headers;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Extend.thy
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     3
    Copyright   1998  University of Cambridge
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     4
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
     5
Extending of state setsExtending of state sets
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     6
  function f (forget)    maps the extended state to the original state
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     7
  function g (forgotten) maps the extended state to the "extending part"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     8
*)
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     9
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
    10
header{*Extending State Sets*}
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
    11
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 13819
diff changeset
    12
theory Extend imports Guar begin
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    13
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    14
constdefs
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    15
8948
b797cfa3548d restructuring: LessThan.ML mostly moved to HOL/SetInterval.ML
paulson
parents: 8703
diff changeset
    16
  (*MOVE to Relation.thy?*)
b797cfa3548d restructuring: LessThan.ML mostly moved to HOL/SetInterval.ML
paulson
parents: 8703
diff changeset
    17
  Restrict :: "[ 'a set, ('a*'b) set] => ('a*'b) set"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    18
    "Restrict A r == r \<inter> (A <*> UNIV)"
8948
b797cfa3548d restructuring: LessThan.ML mostly moved to HOL/SetInterval.ML
paulson
parents: 8703
diff changeset
    19
7482
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    20
  good_map :: "['a*'b => 'c] => bool"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    21
    "good_map h == surj h & (\<forall>x y. fst (inv h (h (x,y))) = x)"
7482
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    22
     (*Using the locale constant "f", this is  f (h (x,y))) = x*)
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    23
  
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    24
  extend_set :: "['a*'b => 'c, 'a set] => 'c set"
10834
a7897aebbffc *** empty log message ***
nipkow
parents: 10064
diff changeset
    25
    "extend_set h A == h ` (A <*> UNIV)"
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    26
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    27
  project_set :: "['a*'b => 'c, 'c set] => 'a set"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    28
    "project_set h C == {x. \<exists>y. h(x,y) \<in> C}"
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    29
532841541d73 project constants
paulson
parents: 6677
diff changeset
    30
  extend_act :: "['a*'b => 'c, ('a*'a) set] => ('c*'c) set"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    31
    "extend_act h == %act. \<Union>(s,s') \<in> act. \<Union>y. {(h(s,y), h(s',y))}"
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    32
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    33
  project_act :: "['a*'b => 'c, ('c*'c) set] => ('a*'a) set"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    34
    "project_act h act == {(x,x'). \<exists>y y'. (h(x,y), h(x',y')) \<in> act}"
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    35
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    36
  extend :: "['a*'b => 'c, 'a program] => 'c program"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    37
    "extend h F == mk_program (extend_set h (Init F),
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
    38
                               extend_act h ` Acts F,
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
    39
                               project_act h -` AllowedActs F)"
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    40
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    41
  (*Argument C allows weak safety laws to be projected*)
7880
62fb24e28e5e exchanged the first two args of "project" and "drop_prog"
paulson
parents: 7878
diff changeset
    42
  project :: "['a*'b => 'c, 'c set, 'c program] => 'a program"
10064
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 8948
diff changeset
    43
    "project h C F ==
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 8948
diff changeset
    44
       mk_program (project_set h (Init F),
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
    45
                   project_act h ` Restrict C ` Acts F,
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
    46
                   {act. Restrict (project_set h C) act :
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
    47
                         project_act h ` Restrict C ` AllowedActs F})"
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    48
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    49
locale Extend =
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    50
  fixes f     :: "'c => 'a"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    51
    and g     :: "'c => 'b"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    52
    and h     :: "'a*'b => 'c"    (*isomorphism between 'a * 'b and 'c *)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    53
    and slice :: "['c set, 'b] => 'a set"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    54
  assumes
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    55
    good_h:  "good_map h"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    56
  defines f_def: "f z == fst (inv h z)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    57
      and g_def: "g z == snd (inv h z)"
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    58
      and slice_def: "slice Z y == {x. h(x,y) \<in> Z}"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    59
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    60
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    61
(** These we prove OUTSIDE the locale. **)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    62
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    63
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
    64
subsection{*Restrict*}
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
    65
(*MOVE to Relation.thy?*)
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    66
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    67
lemma Restrict_iff [iff]: "((x,y): Restrict A r) = ((x,y): r & x \<in> A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    68
by (unfold Restrict_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    69
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    70
lemma Restrict_UNIV [simp]: "Restrict UNIV = id"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    71
apply (rule ext)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    72
apply (auto simp add: Restrict_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    73
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    74
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    75
lemma Restrict_empty [simp]: "Restrict {} r = {}"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    76
by (auto simp add: Restrict_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    77
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    78
lemma Restrict_Int [simp]: "Restrict A (Restrict B r) = Restrict (A \<inter> B) r"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    79
by (unfold Restrict_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    80
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    81
lemma Restrict_triv: "Domain r \<subseteq> A ==> Restrict A r = r"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    82
by (unfold Restrict_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    83
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    84
lemma Restrict_subset: "Restrict A r \<subseteq> r"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    85
by (unfold Restrict_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    86
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    87
lemma Restrict_eq_mono: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    88
     "[| A \<subseteq> B;  Restrict B r = Restrict B s |]  
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    89
      ==> Restrict A r = Restrict A s"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    90
by (unfold Restrict_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    91
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    92
lemma Restrict_imageI: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    93
     "[| s \<in> RR;  Restrict A r = Restrict A s |]  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    94
      ==> Restrict A r \<in> Restrict A ` RR"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    95
by (unfold Restrict_def image_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    96
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
    97
lemma Domain_Restrict [simp]: "Domain (Restrict A r) = A \<inter> Domain r"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    98
by blast
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
    99
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   100
lemma Image_Restrict [simp]: "(Restrict A r) `` B = r `` (A \<inter> B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   101
by blast
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   102
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   103
(*Possibly easier than reasoning about "inv h"*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   104
lemma good_mapI: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   105
     assumes surj_h: "surj h"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
   106
         and prem:   "!! x x' y y'. h(x,y) = h(x',y') ==> x=x'"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   107
     shows "good_map h"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   108
apply (simp add: good_map_def) 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   109
apply (safe intro!: surj_h)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   110
apply (rule prem)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   111
apply (subst surjective_pairing [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   112
apply (subst surj_h [THEN surj_f_inv_f])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   113
apply (rule refl)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   114
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   115
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   116
lemma good_map_is_surj: "good_map h ==> surj h"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   117
by (unfold good_map_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   118
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   119
(*A convenient way of finding a closed form for inv h*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   120
lemma fst_inv_equalityI: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   121
     assumes surj_h: "surj h"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 16417
diff changeset
   122
         and prem:   "!! x y. g (h(x,y)) = x"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   123
     shows "fst (inv h z) = g z"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   124
apply (unfold inv_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   125
apply (rule_tac y1 = z in surj_h [THEN surjD, THEN exE])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   126
apply (rule someI2)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   127
apply (drule_tac [2] f = g in arg_cong)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   128
apply (auto simp add: prem)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   129
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   130
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   131
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   132
subsection{*Trivial properties of f, g, h*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   133
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   134
lemma (in Extend) f_h_eq [simp]: "f(h(x,y)) = x" 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   135
by (simp add: f_def good_h [unfolded good_map_def, THEN conjunct2])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   136
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   137
lemma (in Extend) h_inject1 [dest]: "h(x,y) = h(x',y') ==> x=x'"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   138
apply (drule_tac f = f in arg_cong)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   139
apply (simp add: f_def good_h [unfolded good_map_def, THEN conjunct2])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   140
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   141
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   142
lemma (in Extend) h_f_g_equiv: "h(f z, g z) == z"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   143
by (simp add: f_def g_def 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   144
            good_h [unfolded good_map_def, THEN conjunct1, THEN surj_f_inv_f])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   145
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   146
lemma (in Extend) h_f_g_eq: "h(f z, g z) = z"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   147
by (simp add: h_f_g_equiv)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   148
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   149
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   150
lemma (in Extend) split_extended_all:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   151
     "(!!z. PROP P z) == (!!u y. PROP P (h (u, y)))"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   152
proof 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   153
   assume allP: "\<And>z. PROP P z"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   154
   fix u y
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   155
   show "PROP P (h (u, y))" by (rule allP)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   156
 next
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   157
   assume allPh: "\<And>u y. PROP P (h(u,y))"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   158
   fix z
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   159
   have Phfgz: "PROP P (h (f z, g z))" by (rule allPh)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   160
   show "PROP P z" by (rule Phfgz [unfolded h_f_g_equiv])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   161
qed 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   162
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   163
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   164
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   165
subsection{*@{term extend_set}: basic properties*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   166
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   167
lemma project_set_iff [iff]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   168
     "(x \<in> project_set h C) = (\<exists>y. h(x,y) \<in> C)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   169
by (simp add: project_set_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   170
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   171
lemma extend_set_mono: "A \<subseteq> B ==> extend_set h A \<subseteq> extend_set h B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   172
by (unfold extend_set_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   173
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   174
lemma (in Extend) mem_extend_set_iff [iff]: "z \<in> extend_set h A = (f z \<in> A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   175
apply (unfold extend_set_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   176
apply (force intro: h_f_g_eq [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   177
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   178
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   179
lemma (in Extend) extend_set_strict_mono [iff]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   180
     "(extend_set h A \<subseteq> extend_set h B) = (A \<subseteq> B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   181
by (unfold extend_set_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   182
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   183
lemma extend_set_empty [simp]: "extend_set h {} = {}"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   184
by (unfold extend_set_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   185
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   186
lemma (in Extend) extend_set_eq_Collect: "extend_set h {s. P s} = {s. P(f s)}"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   187
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   188
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   189
lemma (in Extend) extend_set_sing: "extend_set h {x} = {s. f s = x}"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   190
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   191
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   192
lemma (in Extend) extend_set_inverse [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   193
     "project_set h (extend_set h C) = C"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   194
by (unfold extend_set_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   195
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   196
lemma (in Extend) extend_set_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   197
     "C \<subseteq> extend_set h (project_set h C)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   198
apply (unfold extend_set_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   199
apply (auto simp add: split_extended_all, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   200
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   201
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   202
lemma (in Extend) inj_extend_set: "inj (extend_set h)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   203
apply (rule inj_on_inverseI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   204
apply (rule extend_set_inverse)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   205
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   206
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   207
lemma (in Extend) extend_set_UNIV_eq [simp]: "extend_set h UNIV = UNIV"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   208
apply (unfold extend_set_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   209
apply (auto simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   210
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   211
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   212
subsection{*@{term project_set}: basic properties*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   213
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   214
(*project_set is simply image!*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   215
lemma (in Extend) project_set_eq: "project_set h C = f ` C"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   216
by (auto intro: f_h_eq [symmetric] simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   217
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   218
(*Converse appears to fail*)
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   219
lemma (in Extend) project_set_I: "!!z. z \<in> C ==> f z \<in> project_set h C"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   220
by (auto simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   221
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   222
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   223
subsection{*More laws*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   224
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   225
(*Because A and B could differ on the "other" part of the state, 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   226
   cannot generalize to 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   227
      project_set h (A \<inter> B) = project_set h A \<inter> project_set h B
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   228
*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   229
lemma (in Extend) project_set_extend_set_Int:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   230
     "project_set h ((extend_set h A) \<inter> B) = A \<inter> (project_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   231
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   232
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   233
(*Unused, but interesting?*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   234
lemma (in Extend) project_set_extend_set_Un:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   235
     "project_set h ((extend_set h A) \<union> B) = A \<union> (project_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   236
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   237
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   238
lemma project_set_Int_subset:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   239
     "project_set h (A \<inter> B) \<subseteq> (project_set h A) \<inter> (project_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   240
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   241
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   242
lemma (in Extend) extend_set_Un_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   243
     "extend_set h (A \<union> B) = extend_set h A \<union> extend_set h B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   244
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   245
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   246
lemma (in Extend) extend_set_Int_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   247
     "extend_set h (A \<inter> B) = extend_set h A \<inter> extend_set h B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   248
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   249
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   250
lemma (in Extend) extend_set_INT_distrib:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   251
     "extend_set h (INTER A B) = (\<Inter>x \<in> A. extend_set h (B x))"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   252
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   253
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   254
lemma (in Extend) extend_set_Diff_distrib:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   255
     "extend_set h (A - B) = extend_set h A - extend_set h B"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   256
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   257
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   258
lemma (in Extend) extend_set_Union:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   259
     "extend_set h (Union A) = (\<Union>X \<in> A. extend_set h X)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   260
by blast
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   261
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   262
lemma (in Extend) extend_set_subset_Compl_eq:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   263
     "(extend_set h A \<subseteq> - extend_set h B) = (A \<subseteq> - B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   264
by (unfold extend_set_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   265
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   266
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   267
subsection{*@{term extend_act}*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   268
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   269
(*Can't strengthen it to
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   270
  ((h(s,y), h(s',y')) \<in> extend_act h act) = ((s, s') \<in> act & y=y')
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   271
  because h doesn't have to be injective in the 2nd argument*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   272
lemma (in Extend) mem_extend_act_iff [iff]: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   273
     "((h(s,y), h(s',y)) \<in> extend_act h act) = ((s, s') \<in> act)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   274
by (unfold extend_act_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   275
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   276
(*Converse fails: (z,z') would include actions that changed the g-part*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   277
lemma (in Extend) extend_act_D: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   278
     "(z, z') \<in> extend_act h act ==> (f z, f z') \<in> act"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   279
by (unfold extend_act_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   280
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   281
lemma (in Extend) extend_act_inverse [simp]: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   282
     "project_act h (extend_act h act) = act"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   283
by (unfold extend_act_def project_act_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   284
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   285
lemma (in Extend) project_act_extend_act_restrict [simp]: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   286
     "project_act h (Restrict C (extend_act h act)) =  
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   287
      Restrict (project_set h C) act"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   288
by (unfold extend_act_def project_act_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   289
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   290
lemma (in Extend) subset_extend_act_D: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   291
     "act' \<subseteq> extend_act h act ==> project_act h act' \<subseteq> act"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   292
by (unfold extend_act_def project_act_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   293
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   294
lemma (in Extend) inj_extend_act: "inj (extend_act h)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   295
apply (rule inj_on_inverseI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   296
apply (rule extend_act_inverse)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   297
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   298
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   299
lemma (in Extend) extend_act_Image [simp]: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   300
     "extend_act h act `` (extend_set h A) = extend_set h (act `` A)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   301
by (unfold extend_set_def extend_act_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   302
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   303
lemma (in Extend) extend_act_strict_mono [iff]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   304
     "(extend_act h act' \<subseteq> extend_act h act) = (act'<=act)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   305
by (unfold extend_act_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   306
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   307
declare (in Extend) inj_extend_act [THEN inj_eq, iff]
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   308
(*This theorem is  (extend_act h act' = extend_act h act) = (act'=act) *)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   309
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   310
lemma Domain_extend_act: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   311
    "Domain (extend_act h act) = extend_set h (Domain act)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   312
by (unfold extend_set_def extend_act_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   313
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   314
lemma (in Extend) extend_act_Id [simp]: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   315
    "extend_act h Id = Id"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   316
apply (unfold extend_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   317
apply (force intro: h_f_g_eq [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   318
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   319
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   320
lemma (in Extend) project_act_I: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   321
     "!!z z'. (z, z') \<in> act ==> (f z, f z') \<in> project_act h act"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   322
apply (unfold project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   323
apply (force simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   324
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   325
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   326
lemma (in Extend) project_act_Id [simp]: "project_act h Id = Id"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   327
by (unfold project_act_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   328
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   329
lemma (in Extend) Domain_project_act: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   330
  "Domain (project_act h act) = project_set h (Domain act)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   331
apply (unfold project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   332
apply (force simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   333
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   334
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   335
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   336
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   337
subsection{*extend*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   338
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   339
text{*Basic properties*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   340
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   341
lemma Init_extend [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   342
     "Init (extend h F) = extend_set h (Init F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   343
by (unfold extend_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   344
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   345
lemma Init_project [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   346
     "Init (project h C F) = project_set h (Init F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   347
by (unfold project_def, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   348
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   349
lemma (in Extend) Acts_extend [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   350
     "Acts (extend h F) = (extend_act h ` Acts F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   351
by (simp add: extend_def insert_Id_image_Acts)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   352
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   353
lemma (in Extend) AllowedActs_extend [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   354
     "AllowedActs (extend h F) = project_act h -` AllowedActs F"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   355
by (simp add: extend_def insert_absorb)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   356
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   357
lemma Acts_project [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   358
     "Acts(project h C F) = insert Id (project_act h ` Restrict C ` Acts F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   359
by (auto simp add: project_def image_iff)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   360
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   361
lemma (in Extend) AllowedActs_project [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   362
     "AllowedActs(project h C F) =  
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   363
        {act. Restrict (project_set h C) act  
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   364
               \<in> project_act h ` Restrict C ` AllowedActs F}"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   365
apply (simp (no_asm) add: project_def image_iff)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   366
apply (subst insert_absorb)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   367
apply (auto intro!: bexI [of _ Id] simp add: project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   368
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   369
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   370
lemma (in Extend) Allowed_extend:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   371
     "Allowed (extend h F) = project h UNIV -` Allowed F"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   372
apply (simp (no_asm) add: AllowedActs_extend Allowed_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   373
apply blast
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   374
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   375
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   376
lemma (in Extend) extend_SKIP [simp]: "extend h SKIP = SKIP"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   377
apply (unfold SKIP_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   378
apply (rule program_equalityI, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   379
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   380
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   381
lemma project_set_UNIV [simp]: "project_set h UNIV = UNIV"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   382
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   383
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   384
lemma project_set_Union:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   385
     "project_set h (Union A) = (\<Union>X \<in> A. project_set h X)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   386
by blast
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   387
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
   388
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   389
(*Converse FAILS: the extended state contributing to project_set h C
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   390
  may not coincide with the one contributing to project_act h act*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   391
lemma (in Extend) project_act_Restrict_subset:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   392
     "project_act h (Restrict C act) \<subseteq>  
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   393
      Restrict (project_set h C) (project_act h act)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   394
by (auto simp add: project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   395
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   396
lemma (in Extend) project_act_Restrict_Id_eq:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   397
     "project_act h (Restrict C Id) = Restrict (project_set h C) Id"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   398
by (auto simp add: project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   399
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   400
lemma (in Extend) project_extend_eq:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   401
     "project h C (extend h F) =  
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   402
      mk_program (Init F, Restrict (project_set h C) ` Acts F,  
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   403
                  {act. Restrict (project_set h C) act 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   404
                          \<in> project_act h ` Restrict C ` 
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   405
                                     (project_act h -` AllowedActs F)})"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   406
apply (rule program_equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   407
  apply simp
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   408
 apply (simp add: image_eq_UN)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   409
apply (simp add: project_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   410
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   411
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   412
lemma (in Extend) extend_inverse [simp]:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   413
     "project h UNIV (extend h F) = F"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   414
apply (simp (no_asm_simp) add: project_extend_eq image_eq_UN
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   415
          subset_UNIV [THEN subset_trans, THEN Restrict_triv])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   416
apply (rule program_equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   417
apply (simp_all (no_asm))
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   418
apply (subst insert_absorb)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   419
apply (simp (no_asm) add: bexI [of _ Id])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   420
apply auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   421
apply (rename_tac "act")
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   422
apply (rule_tac x = "extend_act h act" in bexI, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   423
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   424
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   425
lemma (in Extend) inj_extend: "inj (extend h)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   426
apply (rule inj_on_inverseI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   427
apply (rule extend_inverse)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   428
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   429
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   430
lemma (in Extend) extend_Join [simp]:
13819
78f5885b76a9 minor revisions
paulson
parents: 13812
diff changeset
   431
     "extend h (F\<squnion>G) = extend h F\<squnion>extend h G"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   432
apply (rule program_equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   433
apply (simp (no_asm) add: extend_set_Int_distrib)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   434
apply (simp add: image_Un, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   435
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   436
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   437
lemma (in Extend) extend_JN [simp]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   438
     "extend h (JOIN I F) = (\<Squnion>i \<in> I. extend h (F i))"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   439
apply (rule program_equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   440
  apply (simp (no_asm) add: extend_set_INT_distrib)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   441
 apply (simp add: image_UN, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   442
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   443
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   444
(** These monotonicity results look natural but are UNUSED **)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   445
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   446
lemma (in Extend) extend_mono: "F \<le> G ==> extend h F \<le> extend h G"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   447
by (force simp add: component_eq_subset)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   448
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   449
lemma (in Extend) project_mono: "F \<le> G ==> project h C F \<le> project h C G"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   450
by (simp add: component_eq_subset, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   451
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   452
lemma (in Extend) all_total_extend: "all_total F ==> all_total (extend h F)"
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   453
by (simp add: all_total_def Domain_extend_act)
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   454
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   455
subsection{*Safety: co, stable*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   456
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   457
lemma (in Extend) extend_constrains:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   458
     "(extend h F \<in> (extend_set h A) co (extend_set h B)) =  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   459
      (F \<in> A co B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   460
by (simp add: constrains_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   461
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   462
lemma (in Extend) extend_stable:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   463
     "(extend h F \<in> stable (extend_set h A)) = (F \<in> stable A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   464
by (simp add: stable_def extend_constrains)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   465
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   466
lemma (in Extend) extend_invariant:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   467
     "(extend h F \<in> invariant (extend_set h A)) = (F \<in> invariant A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   468
by (simp add: invariant_def extend_stable)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   469
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   470
(*Projects the state predicates in the property satisfied by  extend h F.
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   471
  Converse fails: A and B may differ in their extra variables*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   472
lemma (in Extend) extend_constrains_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   473
     "extend h F \<in> A co B ==> F \<in> (project_set h A) co (project_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   474
by (auto simp add: constrains_def, force)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   475
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   476
lemma (in Extend) extend_stable_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   477
     "extend h F \<in> stable A ==> F \<in> stable (project_set h A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   478
by (simp add: stable_def extend_constrains_project_set)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   479
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   480
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   481
subsection{*Weak safety primitives: Co, Stable*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   482
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   483
lemma (in Extend) reachable_extend_f:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   484
     "p \<in> reachable (extend h F) ==> f p \<in> reachable F"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   485
apply (erule reachable.induct)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   486
apply (auto intro: reachable.intros simp add: extend_act_def image_iff)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   487
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   488
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   489
lemma (in Extend) h_reachable_extend:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   490
     "h(s,y) \<in> reachable (extend h F) ==> s \<in> reachable F"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   491
by (force dest!: reachable_extend_f)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   492
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   493
lemma (in Extend) reachable_extend_eq: 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   494
     "reachable (extend h F) = extend_set h (reachable F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   495
apply (unfold extend_set_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   496
apply (rule equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   497
apply (force intro: h_f_g_eq [symmetric] dest!: reachable_extend_f, clarify)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   498
apply (erule reachable.induct)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   499
apply (force intro: reachable.intros)+
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   500
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   501
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   502
lemma (in Extend) extend_Constrains:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   503
     "(extend h F \<in> (extend_set h A) Co (extend_set h B)) =   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   504
      (F \<in> A Co B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   505
by (simp add: Constrains_def reachable_extend_eq extend_constrains 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   506
              extend_set_Int_distrib [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   507
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   508
lemma (in Extend) extend_Stable:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   509
     "(extend h F \<in> Stable (extend_set h A)) = (F \<in> Stable A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   510
by (simp add: Stable_def extend_Constrains)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   511
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   512
lemma (in Extend) extend_Always:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   513
     "(extend h F \<in> Always (extend_set h A)) = (F \<in> Always A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   514
by (simp (no_asm_simp) add: Always_def extend_Stable)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   515
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   516
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   517
(** Safety and "project" **)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   518
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   519
(** projection: monotonicity for safety **)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   520
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   521
lemma project_act_mono:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   522
     "D \<subseteq> C ==>  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   523
      project_act h (Restrict D act) \<subseteq> project_act h (Restrict C act)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   524
by (auto simp add: project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   525
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   526
lemma (in Extend) project_constrains_mono:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   527
     "[| D \<subseteq> C; project h C F \<in> A co B |] ==> project h D F \<in> A co B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   528
apply (auto simp add: constrains_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   529
apply (drule project_act_mono, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   530
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   531
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   532
lemma (in Extend) project_stable_mono:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   533
     "[| D \<subseteq> C;  project h C F \<in> stable A |] ==> project h D F \<in> stable A"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   534
by (simp add: stable_def project_constrains_mono)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   535
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   536
(*Key lemma used in several proofs about project and co*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   537
lemma (in Extend) project_constrains: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   538
     "(project h C F \<in> A co B)  =   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   539
      (F \<in> (C \<inter> extend_set h A) co (extend_set h B) & A \<subseteq> B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   540
apply (unfold constrains_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   541
apply (auto intro!: project_act_I simp add: ball_Un)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   542
apply (force intro!: project_act_I dest!: subsetD)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   543
(*the <== direction*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   544
apply (unfold project_act_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   545
apply (force dest!: subsetD)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   546
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   547
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   548
lemma (in Extend) project_stable: 
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   549
     "(project h UNIV F \<in> stable A) = (F \<in> stable (extend_set h A))"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   550
apply (unfold stable_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   551
apply (simp (no_asm) add: project_constrains)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   552
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   553
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   554
lemma (in Extend) project_stable_I:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   555
     "F \<in> stable (extend_set h A) ==> project h C F \<in> stable A"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   556
apply (drule project_stable [THEN iffD2])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   557
apply (blast intro: project_stable_mono)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   558
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   559
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   560
lemma (in Extend) Int_extend_set_lemma:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   561
     "A \<inter> extend_set h ((project_set h A) \<inter> B) = A \<inter> extend_set h B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   562
by (auto simp add: split_extended_all)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   563
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   564
(*Strange (look at occurrences of C) but used in leadsETo proofs*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   565
lemma project_constrains_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   566
     "G \<in> C co B ==> project h C G \<in> project_set h C co project_set h B"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   567
by (simp add: constrains_def project_def project_act_def, blast)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   568
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   569
lemma project_stable_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   570
     "G \<in> stable C ==> project h C G \<in> stable (project_set h C)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   571
by (simp add: stable_def project_constrains_project_set)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   572
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   573
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   574
subsection{*Progress: transient, ensures*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   575
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   576
lemma (in Extend) extend_transient:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   577
     "(extend h F \<in> transient (extend_set h A)) = (F \<in> transient A)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   578
by (auto simp add: transient_def extend_set_subset_Compl_eq Domain_extend_act)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   579
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   580
lemma (in Extend) extend_ensures:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   581
     "(extend h F \<in> (extend_set h A) ensures (extend_set h B)) =  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   582
      (F \<in> A ensures B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   583
by (simp add: ensures_def extend_constrains extend_transient 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   584
        extend_set_Un_distrib [symmetric] extend_set_Diff_distrib [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   585
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   586
lemma (in Extend) leadsTo_imp_extend_leadsTo:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   587
     "F \<in> A leadsTo B  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   588
      ==> extend h F \<in> (extend_set h A) leadsTo (extend_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   589
apply (erule leadsTo_induct)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   590
  apply (simp add: leadsTo_Basis extend_ensures)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   591
 apply (blast intro: leadsTo_Trans)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   592
apply (simp add: leadsTo_UN extend_set_Union)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   593
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   594
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   595
subsection{*Proving the converse takes some doing!*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   596
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   597
lemma (in Extend) slice_iff [iff]: "(x \<in> slice C y) = (h(x,y) \<in> C)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   598
by (simp (no_asm) add: slice_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   599
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   600
lemma (in Extend) slice_Union: "slice (Union S) y = (\<Union>x \<in> S. slice x y)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   601
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   602
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   603
lemma (in Extend) slice_extend_set: "slice (extend_set h A) y = A"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   604
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   605
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   606
lemma (in Extend) project_set_is_UN_slice:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   607
     "project_set h A = (\<Union>y. slice A y)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   608
by auto
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   609
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   610
lemma (in Extend) extend_transient_slice:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   611
     "extend h F \<in> transient A ==> F \<in> transient (slice A y)"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13805
diff changeset
   612
by (unfold transient_def, auto)
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   613
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   614
(*Converse?*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   615
lemma (in Extend) extend_constrains_slice:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   616
     "extend h F \<in> A co B ==> F \<in> (slice A y) co (slice B y)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   617
by (auto simp add: constrains_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   618
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   619
lemma (in Extend) extend_ensures_slice:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   620
     "extend h F \<in> A ensures B ==> F \<in> (slice A y) ensures (project_set h B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   621
apply (auto simp add: ensures_def extend_constrains extend_transient)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   622
apply (erule_tac [2] extend_transient_slice [THEN transient_strengthen])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   623
apply (erule extend_constrains_slice [THEN constrains_weaken], auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   624
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   625
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   626
lemma (in Extend) leadsTo_slice_project_set:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   627
     "\<forall>y. F \<in> (slice B y) leadsTo CU ==> F \<in> (project_set h B) leadsTo CU"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   628
apply (simp (no_asm) add: project_set_is_UN_slice)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   629
apply (blast intro: leadsTo_UN)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   630
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   631
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   632
lemma (in Extend) extend_leadsTo_slice [rule_format]:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   633
     "extend h F \<in> AU leadsTo BU  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   634
      ==> \<forall>y. F \<in> (slice AU y) leadsTo (project_set h BU)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   635
apply (erule leadsTo_induct)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   636
  apply (blast intro: extend_ensures_slice leadsTo_Basis)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   637
 apply (blast intro: leadsTo_slice_project_set leadsTo_Trans)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   638
apply (simp add: leadsTo_UN slice_Union)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   639
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   640
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   641
lemma (in Extend) extend_leadsTo:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   642
     "(extend h F \<in> (extend_set h A) leadsTo (extend_set h B)) =  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   643
      (F \<in> A leadsTo B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   644
apply safe
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   645
apply (erule_tac [2] leadsTo_imp_extend_leadsTo)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   646
apply (drule extend_leadsTo_slice)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   647
apply (simp add: slice_extend_set)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   648
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   649
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   650
lemma (in Extend) extend_LeadsTo:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   651
     "(extend h F \<in> (extend_set h A) LeadsTo (extend_set h B)) =   
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   652
      (F \<in> A LeadsTo B)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   653
by (simp add: LeadsTo_def reachable_extend_eq extend_leadsTo
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   654
              extend_set_Int_distrib [symmetric])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   655
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   656
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   657
subsection{*preserves*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   658
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   659
lemma (in Extend) project_preserves_I:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   660
     "G \<in> preserves (v o f) ==> project h C G \<in> preserves v"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   661
by (auto simp add: preserves_def project_stable_I extend_set_eq_Collect)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   662
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   663
(*to preserve f is to preserve the whole original state*)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   664
lemma (in Extend) project_preserves_id_I:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   665
     "G \<in> preserves f ==> project h C G \<in> preserves id"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   666
by (simp add: project_preserves_I)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   667
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   668
lemma (in Extend) extend_preserves:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   669
     "(extend h G \<in> preserves (v o f)) = (G \<in> preserves v)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   670
by (auto simp add: preserves_def extend_stable [symmetric] 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   671
                   extend_set_eq_Collect)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   672
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   673
lemma (in Extend) inj_extend_preserves: "inj h ==> (extend h G \<in> preserves g)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   674
by (auto simp add: preserves_def extend_def extend_act_def stable_def 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   675
                   constrains_def g_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   676
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   677
13798
4c1a53627500 conversion to new-style theories and tidying
paulson
parents: 13790
diff changeset
   678
subsection{*Guarantees*}
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   679
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   680
lemma (in Extend) project_extend_Join:
13819
78f5885b76a9 minor revisions
paulson
parents: 13812
diff changeset
   681
     "project h UNIV ((extend h F)\<squnion>G) = F\<squnion>(project h UNIV G)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   682
apply (rule program_equalityI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   683
  apply (simp add: project_set_extend_set_Int)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   684
 apply (simp add: image_eq_UN UN_Un, auto)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   685
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   686
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   687
lemma (in Extend) extend_Join_eq_extend_D:
13819
78f5885b76a9 minor revisions
paulson
parents: 13812
diff changeset
   688
     "(extend h F)\<squnion>G = extend h H ==> H = F\<squnion>(project h UNIV G)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   689
apply (drule_tac f = "project h UNIV" in arg_cong)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   690
apply (simp add: project_extend_Join)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   691
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   692
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   693
(** Strong precondition and postcondition; only useful when
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   694
    the old and new state sets are in bijection **)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   695
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   696
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   697
lemma (in Extend) ok_extend_imp_ok_project:
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   698
     "extend h F ok G ==> F ok project h UNIV G"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   699
apply (auto simp add: ok_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   700
apply (drule subsetD)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   701
apply (auto intro!: rev_image_eqI)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   702
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   703
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   704
lemma (in Extend) ok_extend_iff: "(extend h F ok extend h G) = (F ok G)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   705
apply (simp add: ok_def, safe)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   706
apply (force+)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   707
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   708
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   709
lemma (in Extend) OK_extend_iff: "OK I (%i. extend h (F i)) = (OK I F)"
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   710
apply (unfold OK_def, safe)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   711
apply (drule_tac x = i in bspec)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   712
apply (drule_tac [2] x = j in bspec)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   713
apply (force+)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   714
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   715
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   716
lemma (in Extend) guarantees_imp_extend_guarantees:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   717
     "F \<in> X guarantees Y ==>  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   718
      extend h F \<in> (extend h ` X) guarantees (extend h ` Y)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   719
apply (rule guaranteesI, clarify)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   720
apply (blast dest: ok_extend_imp_ok_project extend_Join_eq_extend_D 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   721
                   guaranteesD)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   722
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   723
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   724
lemma (in Extend) extend_guarantees_imp_guarantees:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   725
     "extend h F \<in> (extend h ` X) guarantees (extend h ` Y)  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   726
      ==> F \<in> X guarantees Y"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   727
apply (auto simp add: guar_def)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   728
apply (drule_tac x = "extend h G" in spec)
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   729
apply (simp del: extend_Join 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   730
            add: extend_Join [symmetric] ok_extend_iff 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   731
                 inj_extend [THEN inj_image_mem_iff])
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   732
done
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   733
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   734
lemma (in Extend) extend_guarantees_eq:
13805
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   735
     "(extend h F \<in> (extend h ` X) guarantees (extend h ` Y)) =  
3786b2fd6808 some x-symbols
paulson
parents: 13798
diff changeset
   736
      (F \<in> X guarantees Y)"
13790
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   737
by (blast intro: guarantees_imp_extend_guarantees 
8d7e9fce8c50 converting UNITY to new-style theories
paulson
parents: 10834
diff changeset
   738
                 extend_guarantees_imp_guarantees)
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
   739
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
   740
end