src/HOL/TLA/Init.thy
author wenzelm
Fri, 26 Jun 2015 15:55:44 +0200
changeset 60591 e0b77517f9a9
parent 60588 750c533459b1
child 62145 5b946c81dfbf
permissions -rw-r--r--
more symbols; eliminated alternative syntax;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     1
(*  Title:      HOL/TLA/Init.thy
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     2
    Author:     Stephan Merz
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     3
    Copyright:  1998 University of Munich
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
     4
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     5
Introduces type of temporal formulas.  Defines interface between
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     6
temporal formulas and its "subformulas" (state predicates and
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
     7
actions).
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
     8
*)
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
     9
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    10
theory Init
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    11
imports Action
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    12
begin
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    13
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    14
typedecl behavior
55382
9218fa411c15 prefer vacuous definitional type classes over axiomatic ones;
wenzelm
parents: 42018
diff changeset
    15
instance behavior :: world ..
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    16
42018
878f33040280 modernized specifications;
wenzelm
parents: 35318
diff changeset
    17
type_synonym temporal = "behavior form"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    18
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    19
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    20
consts
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    21
  Initial     :: "('w::world \<Rightarrow> bool) \<Rightarrow> temporal"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    22
  first_world :: "behavior \<Rightarrow> ('w::world)"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    23
  st1         :: "behavior \<Rightarrow> state"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    24
  st2         :: "behavior \<Rightarrow> state"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    25
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    26
syntax
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    27
  "_TEMP"    :: "lift \<Rightarrow> 'a"                          ("(TEMP _)")
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    28
  "_Init"    :: "lift \<Rightarrow> lift"                        ("(Init _)"[40] 50)
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    29
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    30
translations
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    31
  "TEMP F"   => "(F::behavior \<Rightarrow> _)"
35108
e384e27c229f modernized syntax/translations;
wenzelm
parents: 26304
diff changeset
    32
  "_Init"    == "CONST Initial"
60591
e0b77517f9a9 more symbols;
wenzelm
parents: 60588
diff changeset
    33
  "sigma \<Turnstile> Init F"  <= "_Init F sigma"
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    34
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    35
defs
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    36
  Init_def:    "sigma \<Turnstile> Init F  ==  (first_world sigma) \<Turnstile> F"
57510
8f1dc3b2daa5 insist in explicit overloading;
wenzelm
parents: 55382
diff changeset
    37
8f1dc3b2daa5 insist in explicit overloading;
wenzelm
parents: 55382
diff changeset
    38
defs (overloaded)
60587
0318b43ee95c more symbols;
wenzelm
parents: 57510
diff changeset
    39
  fw_temp_def: "first_world == \<lambda>sigma. sigma"
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    40
  fw_stp_def:  "first_world == st1"
60587
0318b43ee95c more symbols;
wenzelm
parents: 57510
diff changeset
    41
  fw_act_def:  "first_world == \<lambda>sigma. (st1 sigma, st2 sigma)"
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    42
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    43
lemma const_simps [int_rewrite, simp]:
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    44
  "\<turnstile> (Init #True) = #True"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    45
  "\<turnstile> (Init #False) = #False"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    46
  by (auto simp: Init_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    47
26304
02fbd0e7954a avoid rebinding of existing facts;
wenzelm
parents: 21624
diff changeset
    48
lemma Init_simps1 [int_rewrite]:
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    49
  "\<And>F. \<turnstile> (Init \<not>F) = (\<not> Init F)"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    50
  "\<turnstile> (Init (P \<longrightarrow> Q)) = (Init P \<longrightarrow> Init Q)"
60591
e0b77517f9a9 more symbols;
wenzelm
parents: 60588
diff changeset
    51
  "\<turnstile> (Init (P \<and> Q)) = (Init P \<and> Init Q)"
e0b77517f9a9 more symbols;
wenzelm
parents: 60588
diff changeset
    52
  "\<turnstile> (Init (P \<or> Q)) = (Init P \<or> Init Q)"
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    53
  "\<turnstile> (Init (P = Q)) = ((Init P) = (Init Q))"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    54
  "\<turnstile> (Init (\<forall>x. F x)) = (\<forall>x. (Init F x))"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    55
  "\<turnstile> (Init (\<exists>x. F x)) = (\<exists>x. (Init F x))"
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    56
  "\<turnstile> (Init (\<exists>!x. F x)) = (\<exists>!x. (Init F x))"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    57
  by (auto simp: Init_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    58
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    59
lemma Init_stp_act: "\<turnstile> (Init $P) = (Init P)"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    60
  by (auto simp add: Init_def fw_act_def fw_stp_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    61
26304
02fbd0e7954a avoid rebinding of existing facts;
wenzelm
parents: 21624
diff changeset
    62
lemmas Init_simps2 = Init_stp_act [int_rewrite] Init_simps1
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    63
lemmas Init_stp_act_rev = Init_stp_act [int_rewrite, symmetric]
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    64
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    65
lemma Init_temp: "\<turnstile> (Init F) = F"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    66
  by (auto simp add: Init_def fw_temp_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    67
26304
02fbd0e7954a avoid rebinding of existing facts;
wenzelm
parents: 21624
diff changeset
    68
lemmas Init_simps = Init_temp [int_rewrite] Init_simps2
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    69
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    70
(* Trivial instances of the definitions that avoid introducing lambda expressions. *)
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    71
lemma Init_stp: "(sigma \<Turnstile> Init P) = P (st1 sigma)"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    72
  by (simp add: Init_def fw_stp_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    73
60588
750c533459b1 more symbols;
wenzelm
parents: 60587
diff changeset
    74
lemma Init_act: "(sigma \<Turnstile> Init A) = A (st1 sigma, st2 sigma)"
21624
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    75
  by (simp add: Init_def fw_act_def)
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    76
6f79647cf536 TLA: converted legacy ML scripts;
wenzelm
parents: 17309
diff changeset
    77
lemmas Init_defs = Init_stp Init_act Init_temp [int_use]
17309
c43ed29bd197 converted to Isar theory format;
wenzelm
parents: 12338
diff changeset
    78
6255
db63752140c7 updated (Stephan Merz);
wenzelm
parents:
diff changeset
    79
end