src/HOL/UNITY/Common.ML
author paulson
Sat, 23 Sep 2000 16:02:01 +0200
changeset 10064 1a77667b21ef
parent 7826 c6a8b73b6c2a
permissions -rw-r--r--
added compatibility relation: AllowedActs, Allowed, ok, OK and changes to "guarantees", etc.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Common
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     2
    ID:         $Id$
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     5
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     6
Common Meeting Time example from Misra (1994)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     7
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     8
The state is identified with the one variable in existence.
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     9
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    10
From Misra, "A Logic for Concurrent Programming" (1994), sections 5.1 and 13.1.
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    11
*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    12
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    13
(*Misra's property CMT4: t exceeds no common meeting time*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    14
Goal "[| ALL m. F : {m} Co (maxfg m); n: common |] \
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    15
\     ==> F : Stable (atMost n)";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    16
by (dres_inst_tac [("M", "{t. t<=n}")] Elimination_sing 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    17
by (asm_full_simp_tac
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    18
    (simpset() addsimps [atMost_def, Stable_def, common_def, maxfg_def,
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    19
			 le_max_iff_disj]) 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    20
by (etac Constrains_weaken_R 1);
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    21
by (blast_tac (claset() addIs [order_eq_refl, fmono, gmono, le_trans]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    22
qed "common_stable";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    23
5620
3ac11c4af76a tidying and renaming
paulson
parents: 5608
diff changeset
    24
Goal "[| Init F <= atMost n;  \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    25
\        ALL m. F : {m} Co (maxfg m); n: common |] \
6570
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
    26
\     ==> F : Always (atMost n)";
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
    27
by (asm_simp_tac (simpset() addsimps [AlwaysI, common_stable]) 1);
a7d7985050a9 Invariant -> Always and other tidying
paulson
parents: 6536
diff changeset
    28
qed "common_safety";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    29
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    30
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    31
(*** Some programs that implement the safety property above ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    32
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    33
Goal "SKIP : {m} co (maxfg m)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    34
by (simp_tac (simpset() addsimps [constrains_def, maxfg_def, le_max_iff_disj,
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    35
				  fasc]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    36
result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    37
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    38
(*This one is  t := ftime t || t := gtime t*)
10064
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 7826
diff changeset
    39
Goal "mk_program (UNIV, {range(%t.(t,ftime t)), range(%t.(t,gtime t))}, UNIV) \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    40
\      : {m} co (maxfg m)";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    41
by (simp_tac (simpset() addsimps [constrains_def, maxfg_def, 
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    42
				  le_max_iff_disj, fasc]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    43
result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    44
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    45
(*This one is  t := max (ftime t) (gtime t)*)
10064
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 7826
diff changeset
    46
Goal "mk_program (UNIV, {range(%t.(t, max (ftime t) (gtime t)))}, UNIV) \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    47
\      : {m} co (maxfg m)";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    48
by (simp_tac 
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    49
    (simpset() addsimps [constrains_def, maxfg_def, max_def, gasc]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    50
result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    51
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    52
(*This one is  t := t+1 if t <max (ftime t) (gtime t) *)
10064
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 7826
diff changeset
    53
Goal "mk_program  \
1a77667b21ef added compatibility relation: AllowedActs, Allowed, ok,
paulson
parents: 7826
diff changeset
    54
\         (UNIV, { {(t, Suc t) | t. t < max (ftime t) (gtime t)} }, UNIV)  \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    55
\      : {m} co (maxfg m)";
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    56
by (simp_tac 
fe887910e32e specifications as sets of programs
paulson
parents: 5620
diff changeset
    57
    (simpset() addsimps [constrains_def, maxfg_def, max_def, gasc]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    58
result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    59
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    60
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    61
(*It remans to prove that they satisfy CMT3': t does not decrease,
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    62
  and that CMT3' implies that t stops changing once common(t) holds.*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    63
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    64
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    65
(*** Progress under weak fairness ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    66
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    67
Addsimps [atMost_Int_atLeast];
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    68
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    69
Goal "[| ALL m. F : {m} Co (maxfg m); \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    70
\               ALL m: lessThan n. F : {m} LeadsTo (greaterThan m); \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5490
diff changeset
    71
\               n: common |]  \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    72
\     ==> F : (atMost n) LeadsTo common";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    73
by (rtac LeadsTo_weaken_R 1);
7520
65f0cec65fc6 now uses the identity function
paulson
parents: 6702
diff changeset
    74
by (res_inst_tac [("f","id"), ("l","n")] GreaterThan_bounded_induct 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    75
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    76
by (rtac subset_refl 2);
6702
27a2e763daf8 renamed PSP_stable2->PSP_Stable2
paulson
parents: 6570
diff changeset
    77
by (blast_tac (claset() addDs [PSP_Stable2] 
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    78
                        addIs [common_stable, LeadsTo_weaken_R]) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    79
val lemma = result();
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    80
5490
85855f65d0c6 From Compl(A) to -A
paulson
parents: 5313
diff changeset
    81
(*The "ALL m: -common" form echoes CMT6.*)
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    82
Goal "[| ALL m. F : {m} Co (maxfg m); \
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    83
\               ALL m: -common. F : {m} LeadsTo (greaterThan m); \
5584
aad639e56d4e Now id:(Acts prg) is implicit
paulson
parents: 5490
diff changeset
    84
\               n: common |]  \
6536
281d44905cab made many specification operators infix
paulson
parents: 6295
diff changeset
    85
\            ==> F : (atMost (LEAST n. n: common)) LeadsTo common";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    86
by (rtac lemma 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    87
by (ALLGOALS Asm_simp_tac);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    88
by (etac LeastI 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    89
by (blast_tac (claset() addSDs [not_less_Least]) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    90
qed "leadsTo_common";