src/HOL/TLA/Action.thy
author wenzelm
Sun, 20 Mar 2011 23:07:06 +0100
changeset 42018 878f33040280
parent 37678 0040bafffdef
child 42785 15ec9b3c14cc
permissions -rw-r--r--
modernized specifications;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
     1
(*  Title:      HOL/TLA/Action.thy 
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
     2
    Author:     Stephan Merz
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
     3
    Copyright:  1998 University of Munich
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
     4
*)
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
     5
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
     6
header {* The action level of TLA as an Isabelle theory *}
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
     7
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
     8
theory Action
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
     9
imports Stfun
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    10
begin
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    11
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    12
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    13
(** abstract syntax **)
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    14
42018
878f33040280 modernized specifications;
wenzelm
parents: 37678
diff changeset
    15
type_synonym 'a trfun = "(state * state) => 'a"
878f33040280 modernized specifications;
wenzelm
parents: 37678
diff changeset
    16
type_synonym action   = "bool trfun"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    17
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 35354
diff changeset
    18
arities prod :: (world, world) world
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    19
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    20
consts
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    21
  (** abstract syntax **)
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    22
  before        :: "'a stfun => 'a trfun"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    23
  after         :: "'a stfun => 'a trfun"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    24
  unch          :: "'a stfun => action"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    25
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    26
  SqAct         :: "[action, 'a stfun] => action"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    27
  AnAct         :: "[action, 'a stfun] => action"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    28
  enabled       :: "action => stpred"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    29
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    30
(** concrete syntax **)
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    31
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    32
syntax
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    33
  (* Syntax for writing action expressions in arbitrary contexts *)
35354
2e8dc3c64430 observe standard convention for syntax consts;
wenzelm
parents: 35318
diff changeset
    34
  "_ACT"        :: "lift => 'a"                      ("(ACT _)")
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    35
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    36
  "_before"     :: "lift => lift"                    ("($_)"  [100] 99)
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    37
  "_after"      :: "lift => lift"                    ("(_$)"  [100] 99)
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    38
  "_unchanged"  :: "lift => lift"                    ("(unchanged _)" [100] 99)
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    39
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    40
  (*** Priming: same as "after" ***)
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    41
  "_prime"      :: "lift => lift"                    ("(_`)" [100] 99)
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    42
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    43
  "_SqAct"      :: "[lift, lift] => lift"            ("([_]'_(_))" [0,1000] 99)
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    44
  "_AnAct"      :: "[lift, lift] => lift"            ("(<_>'_(_))" [0,1000] 99)
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    45
  "_Enabled"    :: "lift => lift"                    ("(Enabled _)" [100] 100)
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    46
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    47
translations
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    48
  "ACT A"            =>   "(A::state*state => _)"
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    49
  "_before"          ==   "CONST before"
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    50
  "_after"           ==   "CONST after"
9517
f58863b1406a tuned version by Stephan Merz (unbatchified etc.);
wenzelm
parents: 6255
diff changeset
    51
  "_prime"           =>   "_after"
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    52
  "_unchanged"       ==   "CONST unch"
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    53
  "_SqAct"           ==   "CONST SqAct"
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    54
  "_AnAct"           ==   "CONST AnAct"
e384e27c229f modernized syntax/translations;
wenzelm
parents: 30528
diff changeset
    55
  "_Enabled"         ==   "CONST enabled"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    56
  "w |= [A]_v"       <=   "_SqAct A v w"
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    57
  "w |= <A>_v"       <=   "_AnAct A v w"
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    58
  "s |= Enabled A"   <=   "_Enabled A s"
db63752140c7 updated (Stephan Merz);
wenzelm
parents: 3807
diff changeset
    59
  "w |= unchanged f" <=   "_unchanged f w"
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    60
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    61
axioms
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    62
  unl_before:    "(ACT $v) (s,t) == v s"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    63
  unl_after:     "(ACT v$) (s,t) == v t"
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    64
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    65
  unchanged_def: "(s,t) |= unchanged v == (v t = v s)"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    66
  square_def:    "ACT [A]_v == ACT (A | unchanged v)"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    67
  angle_def:     "ACT <A>_v == ACT (A & ~ unchanged v)"
3807
82a99b090d9d A formalization of TLA in HOL -- by Stephan Merz;
wenzelm
parents:
diff changeset
    68
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    69
  enabled_def:   "s |= Enabled A  ==  EX u. (s,u) |= A"
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 11703
diff changeset
    70
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    71
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    72
(* The following assertion specializes "intI" for any world type
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    73
   which is a pair, not just for "state * state".
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    74
*)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    75
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    76
lemma actionI [intro!]:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    77
  assumes "!!s t. (s,t) |= A"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    78
  shows "|- A"
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 24180
diff changeset
    79
  apply (rule assms intI prod.induct)+
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    80
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    81
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    82
lemma actionD [dest]: "|- A ==> (s,t) |= A"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    83
  apply (erule intD)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    84
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    85
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    86
lemma pr_rews [int_rewrite]:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    87
  "|- (#c)` = #c"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    88
  "!!f. |- f<x>` = f<x` >"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    89
  "!!f. |- f<x,y>` = f<x`,y` >"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    90
  "!!f. |- f<x,y,z>` = f<x`,y`,z` >"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    91
  "|- (! x. P x)` = (! x. (P x)`)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    92
  "|- (? x. P x)` = (? x. (P x)`)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    93
  by (rule actionI, unfold unl_after intensional_rews, rule refl)+
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    94
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    95
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    96
lemmas act_rews [simp] = unl_before unl_after unchanged_def pr_rews
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    97
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    98
lemmas action_rews = act_rews intensional_rews
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    99
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   100
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   101
(* ================ Functions to "unlift" action theorems into HOL rules ================ *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   102
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   103
ML {*
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   104
(* The following functions are specialized versions of the corresponding
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   105
   functions defined in Intensional.ML in that they introduce a
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   106
   "world" parameter of the form (s,t) and apply additional rewrites.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   107
*)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   108
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   109
fun action_unlift th =
24180
9f818139951b tuned ML setup;
wenzelm
parents: 21624
diff changeset
   110
  (rewrite_rule @{thms action_rews} (th RS @{thm actionD}))
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   111
    handle THM _ => int_unlift th;
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   112
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   113
(* Turn  |- A = B  into meta-level rewrite rule  A == B *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   114
val action_rewrite = int_rewrite
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   115
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   116
fun action_use th =
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   117
    case (concl_of th) of
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   118
      Const _ $ (Const ("Intensional.Valid", _) $ _) =>
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   119
              (flatten (action_unlift th) handle THM _ => th)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   120
    | _ => th;
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   121
*}
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   122
30528
7173bf123335 simplified attribute setup;
wenzelm
parents: 27104
diff changeset
   123
attribute_setup action_unlift = {* Scan.succeed (Thm.rule_attribute (K action_unlift)) *} ""
7173bf123335 simplified attribute setup;
wenzelm
parents: 27104
diff changeset
   124
attribute_setup action_rewrite = {* Scan.succeed (Thm.rule_attribute (K action_rewrite)) *} ""
7173bf123335 simplified attribute setup;
wenzelm
parents: 27104
diff changeset
   125
attribute_setup action_use = {* Scan.succeed (Thm.rule_attribute (K action_use)) *} ""
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   126
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   127
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   128
(* =========================== square / angle brackets =========================== *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   129
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   130
lemma idle_squareI: "(s,t) |= unchanged v ==> (s,t) |= [A]_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   131
  by (simp add: square_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   132
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   133
lemma busy_squareI: "(s,t) |= A ==> (s,t) |= [A]_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   134
  by (simp add: square_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   135
  
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   136
lemma squareE [elim]:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   137
  "[| (s,t) |= [A]_v; A (s,t) ==> B (s,t); v t = v s ==> B (s,t) |] ==> B (s,t)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   138
  apply (unfold square_def action_rews)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   139
  apply (erule disjE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   140
  apply simp_all
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   141
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   142
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   143
lemma squareCI [intro]: "[| v t ~= v s ==> A (s,t) |] ==> (s,t) |= [A]_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   144
  apply (unfold square_def action_rews)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   145
  apply (rule disjCI)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   146
  apply (erule (1) meta_mp)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   147
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   148
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   149
lemma angleI [intro]: "!!s t. [| A (s,t); v t ~= v s |] ==> (s,t) |= <A>_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   150
  by (simp add: angle_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   151
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   152
lemma angleE [elim]: "[| (s,t) |= <A>_v; [| A (s,t); v t ~= v s |] ==> R |] ==> R"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   153
  apply (unfold angle_def action_rews)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   154
  apply (erule conjE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   155
  apply simp
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   156
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   157
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   158
lemma square_simulation:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   159
   "!!f. [| |- unchanged f & ~B --> unchanged g;    
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   160
            |- A & ~unchanged g --> B               
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   161
         |] ==> |- [A]_f --> [B]_g"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   162
  apply clarsimp
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   163
  apply (erule squareE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   164
  apply (auto simp add: square_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   165
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   166
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   167
lemma not_square: "|- (~ [A]_v) = <~A>_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   168
  by (auto simp: square_def angle_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   169
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   170
lemma not_angle: "|- (~ <A>_v) = [~A]_v"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   171
  by (auto simp: square_def angle_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   172
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   173
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   174
(* ============================== Facts about ENABLED ============================== *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   175
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   176
lemma enabledI: "|- A --> $Enabled A"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   177
  by (auto simp add: enabled_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   178
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   179
lemma enabledE: "[| s |= Enabled A; !!u. A (s,u) ==> Q |] ==> Q"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   180
  apply (unfold enabled_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   181
  apply (erule exE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   182
  apply simp
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   183
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   184
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   185
lemma notEnabledD: "|- ~$Enabled G --> ~ G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   186
  by (auto simp add: enabled_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   187
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   188
(* Monotonicity *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   189
lemma enabled_mono:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   190
  assumes min: "s |= Enabled F"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   191
    and maj: "|- F --> G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   192
  shows "s |= Enabled G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   193
  apply (rule min [THEN enabledE])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   194
  apply (rule enabledI [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   195
  apply (erule maj [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   196
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   197
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   198
(* stronger variant *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   199
lemma enabled_mono2:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   200
  assumes min: "s |= Enabled F"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   201
    and maj: "!!t. F (s,t) ==> G (s,t)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   202
  shows "s |= Enabled G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   203
  apply (rule min [THEN enabledE])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   204
  apply (rule enabledI [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   205
  apply (erule maj)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   206
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   207
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   208
lemma enabled_disj1: "|- Enabled F --> Enabled (F | G)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   209
  by (auto elim!: enabled_mono)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   210
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   211
lemma enabled_disj2: "|- Enabled G --> Enabled (F | G)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   212
  by (auto elim!: enabled_mono)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   213
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   214
lemma enabled_conj1: "|- Enabled (F & G) --> Enabled F"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   215
  by (auto elim!: enabled_mono)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   216
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   217
lemma enabled_conj2: "|- Enabled (F & G) --> Enabled G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   218
  by (auto elim!: enabled_mono)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   219
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   220
lemma enabled_conjE:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   221
    "[| s |= Enabled (F & G); [| s |= Enabled F; s |= Enabled G |] ==> Q |] ==> Q"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   222
  apply (frule enabled_conj1 [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   223
  apply (drule enabled_conj2 [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   224
  apply simp
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   225
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   226
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   227
lemma enabled_disjD: "|- Enabled (F | G) --> Enabled F | Enabled G"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   228
  by (auto simp add: enabled_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   229
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   230
lemma enabled_disj: "|- Enabled (F | G) = (Enabled F | Enabled G)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   231
  apply clarsimp
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   232
  apply (rule iffI)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   233
   apply (erule enabled_disjD [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   234
  apply (erule disjE enabled_disj1 [action_use] enabled_disj2 [action_use])+
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   235
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   236
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   237
lemma enabled_ex: "|- Enabled (EX x. F x) = (EX x. Enabled (F x))"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   238
  by (force simp add: enabled_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   239
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   240
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   241
(* A rule that combines enabledI and baseE, but generates fewer instantiations *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   242
lemma base_enabled:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   243
    "[| basevars vs; EX c. ! u. vs u = c --> A(s,u) |] ==> s |= Enabled A"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   244
  apply (erule exE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   245
  apply (erule baseE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   246
  apply (rule enabledI [action_use])
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   247
  apply (erule allE)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   248
  apply (erule mp)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   249
  apply assumption
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   250
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   251
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   252
(* ======================= action_simp_tac ============================== *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   253
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   254
ML {*
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   255
(* A dumb simplification-based tactic with just a little first-order logic:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   256
   should plug in only "very safe" rules that can be applied blindly.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   257
   Note that it applies whatever simplifications are currently active.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   258
*)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   259
fun action_simp_tac ss intros elims =
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   260
    asm_full_simp_tac
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   261
         (ss setloop ((resolve_tac ((map action_use intros)
24180
9f818139951b tuned ML setup;
wenzelm
parents: 21624
diff changeset
   262
                                    @ [refl,impI,conjI,@{thm actionI},@{thm intI},allI]))
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   263
                      ORELSE' (eresolve_tac ((map action_use elims)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   264
                                             @ [conjE,disjE,exE]))));
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   265
*}
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   266
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   267
(* ---------------- enabled_tac: tactic to prove (Enabled A) -------------------- *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   268
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   269
ML {*
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   270
(* "Enabled A" can be proven as follows:
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   271
   - Assume that we know which state variables are "base variables"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   272
     this should be expressed by a theorem of the form "basevars (x,y,z,...)".
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   273
   - Resolve this theorem with baseE to introduce a constant for the value of the
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   274
     variables in the successor state, and resolve the goal with the result.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   275
   - Resolve with enabledI and do some rewriting.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   276
   - Solve for the unknowns using standard HOL reasoning.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   277
   The following tactic combines these steps except the final one.
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   278
*)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   279
24180
9f818139951b tuned ML setup;
wenzelm
parents: 21624
diff changeset
   280
fun enabled_tac (cs, ss) base_vars =
9f818139951b tuned ML setup;
wenzelm
parents: 21624
diff changeset
   281
  clarsimp_tac (cs addSIs [base_vars RS @{thm base_enabled}], ss);
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   282
*}
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   283
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   284
(* Example *)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   285
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   286
lemma
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   287
  assumes "basevars (x,y,z)"
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   288
  shows "|- x --> Enabled ($x & (y$ = #False))"
24180
9f818139951b tuned ML setup;
wenzelm
parents: 21624
diff changeset
   289
  apply (tactic {* enabled_tac @{clasimpset} @{thm assms} 1 *})
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   290
  apply auto
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   291
  done
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   292
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
   293
end