src/HOL/UNITY/Simple/Common.thy
author haftmann
Mon, 21 Sep 2009 15:35:14 +0200
changeset 32692 90c8af39e215
parent 32629 542f0563d7b4
child 32697 72e8608dce54
permissions -rw-r--r--
tuned header
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Common
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     3
    Copyright   1998  University of Cambridge
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     4
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     5
Common Meeting Time example from Misra (1994)
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     6
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     7
The state is identified with the one variable in existence.
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     8
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
     9
From Misra, "A Logic for Concurrent Programming" (1994), sections 5.1 and 13.1.
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    10
*)
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    11
32692
90c8af39e215 tuned header
haftmann
parents: 32629
diff changeset
    12
theory Common
90c8af39e215 tuned header
haftmann
parents: 32629
diff changeset
    13
imports "../UNITY_Main"
90c8af39e215 tuned header
haftmann
parents: 32629
diff changeset
    14
begin
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    15
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    16
consts
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    17
  ftime :: "nat=>nat"
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    18
  gtime :: "nat=>nat"
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    19
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    20
axioms
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    21
  fmono: "m \<le> n ==> ftime m \<le> ftime n"
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    22
  gmono: "m \<le> n ==> gtime m \<le> gtime n"
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    23
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    24
  fasc:  "m \<le> ftime n"
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    25
  gasc:  "m \<le> gtime n"
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    26
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    27
constdefs
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    28
  common :: "nat set"
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    29
    "common == {n. ftime n = n & gtime n = n}"
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    30
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    31
  maxfg :: "nat => nat set"
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    32
    "maxfg m == {t. t \<le> max (ftime m) (gtime m)}"
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
    33
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    34
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    35
(*Misra's property CMT4: t exceeds no common meeting time*)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    36
lemma common_stable:
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    37
     "[| \<forall>m. F \<in> {m} Co (maxfg m); n \<in> common |]  
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    38
      ==> F \<in> Stable (atMost n)"
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    39
apply (drule_tac M = "{t. t \<le> n}" in Elimination_sing)
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    40
apply (simp add: atMost_def Stable_def common_def maxfg_def le_max_iff_disj)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    41
apply (erule Constrains_weaken_R)
21026
3b2821e0d541 Adapted to changes in FixedPoint theory.
berghofe
parents: 18556
diff changeset
    42
apply (blast intro: order_eq_refl le_trans dest: fmono gmono)
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    43
done
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    44
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    45
lemma common_safety:
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    46
     "[| Init F \<subseteq> atMost n;   
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    47
         \<forall>m. F \<in> {m} Co (maxfg m); n \<in> common |]  
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    48
      ==> F \<in> Always (atMost n)"
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    49
by (simp add: AlwaysI common_stable)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    50
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    51
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    52
(*** Some programs that implement the safety property above ***)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    53
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    54
lemma "SKIP \<in> {m} co (maxfg m)"
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    55
by (simp add: constrains_def maxfg_def le_max_iff_disj fasc)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    56
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    57
(*This one is  t := ftime t || t := gtime t*)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    58
lemma "mk_total_program
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    59
         (UNIV, {range(%t.(t,ftime t)), range(%t.(t,gtime t))}, UNIV)
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    60
       \<in> {m} co (maxfg m)"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    61
apply (simp add: mk_total_program_def) 
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    62
apply (simp add: constrains_def maxfg_def le_max_iff_disj fasc)
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    63
done
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    64
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    65
(*This one is  t := max (ftime t) (gtime t)*)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    66
lemma "mk_total_program (UNIV, {range(%t.(t, max (ftime t) (gtime t)))}, UNIV)
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    67
       \<in> {m} co (maxfg m)"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    68
apply (simp add: mk_total_program_def) 
32444
bd13b7756f47 tuned proofs
nipkow
parents: 21026
diff changeset
    69
apply (simp add: constrains_def maxfg_def gasc)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    70
done
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    71
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    72
(*This one is  t := t+1 if t <max (ftime t) (gtime t) *)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    73
lemma  "mk_total_program
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    74
          (UNIV, { {(t, Suc t) | t. t < max (ftime t) (gtime t)} }, UNIV)   
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
    75
       \<in> {m} co (maxfg m)"
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    76
apply (simp add: mk_total_program_def) 
32444
bd13b7756f47 tuned proofs
nipkow
parents: 21026
diff changeset
    77
apply (simp add: constrains_def maxfg_def gasc)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13806
diff changeset
    78
done
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    79
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    80
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    81
(*It remans to prove that they satisfy CMT3': t does not decrease,
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    82
  and that CMT3' implies that t stops changing once common(t) holds.*)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    83
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    84
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    85
(*** Progress under weak fairness ***)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    86
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
    87
lemma leadsTo_common_lemma:
32629
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    88
  assumes "\<forall>m. F \<in> {m} Co (maxfg m)"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    89
    and "\<forall>m \<in> lessThan n. F \<in> {m} LeadsTo (greaterThan m)"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    90
    and "n \<in> common"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    91
  shows "F \<in> (atMost n) LeadsTo common"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    92
proof (rule LeadsTo_weaken_R)
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    93
  show "F \<in> {..n} LeadsTo {..n} \<inter> id -` {n..} \<union> common"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    94
  proof (induct rule: GreaterThan_bounded_induct [of n _ _ id])
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    95
    case 1
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    96
    from assms have "\<forall>m\<in>{..<n}. F \<in> {..n} \<inter> {m} LeadsTo {..n} \<inter> {m<..} \<union> common"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    97
      by (blast dest: PSP_Stable2 intro: common_stable LeadsTo_weaken_R)
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    98
    then show ?case by simp
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
    99
  qed
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
   100
next
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
   101
  from `n \<in> common`
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
   102
  show "{..n} \<inter> id -` {n..} \<union> common \<subseteq> common"
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
   103
    by (simp add: atMost_Int_atLeast)
542f0563d7b4 isarified proof
haftmann
parents: 32456
diff changeset
   104
qed
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   105
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
   106
(*The "\<forall>m \<in> -common" form echoes CMT6.*)
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   107
lemma leadsTo_common:
13806
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
   108
     "[| \<forall>m. F \<in> {m} Co (maxfg m);  
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
   109
         \<forall>m \<in> -common. F \<in> {m} LeadsTo (greaterThan m);  
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
   110
         n \<in> common |]   
fd40c9d9076b more tidying
paulson
parents: 13785
diff changeset
   111
      ==> F \<in> (atMost (LEAST n. n \<in> common)) LeadsTo common"
13785
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   112
apply (rule leadsTo_common_lemma)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   113
apply (simp_all (no_asm_simp))
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   114
apply (erule_tac [2] LeastI)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   115
apply (blast dest!: not_less_Least)
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   116
done
e2fcd88be55d Partial conversion of UNITY to Isar new-style theories
paulson
parents: 11195
diff changeset
   117
11195
65ede8dfe304 reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp
paulson
parents:
diff changeset
   118
end