src/HOL/UNITY/Mutex.ML
author paulson
Mon, 03 May 1999 11:18:44 +0200
changeset 6565 de4acf4449fa
parent 6536 281d44905cab
child 6570 a7d7985050a9
permissions -rw-r--r--
renamed state variables
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5111
8f4b72f0c15d Uncurried functions LeadsTo and reach
paulson
parents: 5069
diff changeset
     1
(*  Title:      HOL/UNITY/Mutex
4776
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
Based on "A Family of 2-Process Mutual Exclusion Algorithms" by J Misra
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     7
*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
     8
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
     9
(*split_all_tac causes a big blow-up*)
5706
21706a735c8d record_split_name;
wenzelm
parents: 5701
diff changeset
    10
claset_ref() := claset() delSWrapper record_split_name;
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    11
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    12
Addsimps [Mutex_def RS def_prg_Init];
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    13
program_defs_ref := [Mutex_def];
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    14
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    15
Addsimps (map simp_of_act
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    16
	  [U0_def, U1_def, U2_def, U3_def, U4_def, 
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    17
	   V0_def, V1_def, V2_def, V3_def, V4_def]);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    18
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    19
Addsimps (map simp_of_set
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    20
	  [invariantU_def, invariantV_def, bad_invariantU_def]);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    21
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
    22
(*Simplification for records*)
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    23
Addsimps (thms"state.update_defs");
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
    24
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    25
Goal "Mutex : Invariant invariantU";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    26
by (rtac InvariantI 1);
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    27
by (constrains_tac 2);
5232
e5a7cdd07ea5 Tidied; uses records
paulson
parents: 5111
diff changeset
    28
by Auto_tac;
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
    29
qed "invariantU";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    30
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    31
Goal "Mutex : Invariant invariantV";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    32
by (rtac InvariantI 1);
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    33
by (constrains_tac 2);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    34
by Auto_tac;
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
    35
qed "invariantV";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    36
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    37
val invariantUV = Invariant_Int_rule [invariantU, invariantV];
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    38
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    39
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
    40
(*The safety property: mutual exclusion*)
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    41
Goal "(reachable Mutex) Int {s. m s = #3 & n s = #3} = {}";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    42
by (cut_facts_tac [invariantUV RS Invariant_includes_reachable] 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    43
by Auto_tac;
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    44
qed "mutual_exclusion";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    45
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    46
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    47
(*The bad invariant FAILS in V1*)
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    48
Goal "Mutex : Invariant bad_invariantU";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
    49
by (rtac InvariantI 1);
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    50
by (constrains_tac 2);
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    51
by (Force_tac 1);
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    52
(*Needs a decision procedure to simplify the resulting state*)
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    53
by (auto_tac (claset(), 
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    54
	      simpset_of Int.thy addsimps
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    55
	        [zadd_int, integ_of_Pls, integ_of_Min, 
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    56
		 integ_of_BIT, le_int_Suc_eq]));
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    57
by (dtac zle_trans 1 THEN assume_tac 1);
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    58
by (full_simp_tac (simpset_of Int.thy) 1);
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    59
by (asm_full_simp_tac (simpset() addsimps int_simps) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    60
(*Resulting state: n=1, p=false, m=4, u=false.  
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    61
  Execution of V1 (the command of process v guarded by n=1) sets p:=true,
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    62
  violating the invariant!*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    63
(*Check that subgoals remain: proof failed.*)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    64
getgoal 1;  
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    65
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    66
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    67
Goal "(#1 <= i & i <= #3) = (i = #1 | i = #2 | i = #3)";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    68
by (auto_tac (claset(),
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    69
	      simpset_of Int.thy addsimps
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    70
	        [zle_iff_zadd, zadd_int, integ_of_Pls, integ_of_Min, 
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    71
		 integ_of_BIT]));
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    72
qed "eq_123";
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    73
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
    74
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    75
(*** Progress for U ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    76
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    77
Goalw [Unless_def] "Mutex : {s. m s=#2} Unless {s. m s=#3}";
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
    78
by (constrains_tac 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    79
qed "U_F0";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    80
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    81
Goal "Mutex : {s. m s=#1} LeadsTo {s. p s = v s & m s = #2}";
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    82
by (ensures_tac "U1" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    83
qed "U_F1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    84
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    85
Goal "Mutex : {s. ~ p s & m s = #2} LeadsTo {s. m s = #3}";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5320
diff changeset
    86
by (cut_facts_tac [invariantU] 1);
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    87
by (ensures_tac "U2" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    88
qed "U_F2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    89
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    90
Goal "Mutex : {s. m s = #3} LeadsTo {s. p s}";
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    91
by (res_inst_tac [("B", "{s. m s = #4}")] LeadsTo_Trans 1);
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    92
by (ensures_tac "U4" 2);
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    93
by (ensures_tac "U3" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    94
qed "U_F3";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    95
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
    96
Goal "Mutex : {s. m s = #2} LeadsTo {s. p s}";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5320
diff changeset
    97
by (rtac ([LeadsTo_weaken_L, Int_lower2 RS subset_imp_LeadsTo] 
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    98
	  MRS LeadsTo_Diff) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
    99
by (rtac ([U_F2, U_F3] MRS LeadsTo_Trans) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   100
by (auto_tac (claset() addSEs [less_SucE], simpset()));
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   101
val U_lemma2 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   102
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   103
Goal "Mutex : {s. m s = #1} LeadsTo {s. p s}";
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   104
by (rtac ([U_F1 RS LeadsTo_weaken_R, U_lemma2] MRS LeadsTo_Trans) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   105
by (Blast_tac 1);
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   106
val U_lemma1 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   107
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   108
Goal "Mutex : {s. #1 <= m s & m s <= #3} LeadsTo {s. p s}";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
   109
by (simp_tac (simpset() addsimps [eq_123, Collect_disj_eq, LeadsTo_Un_distrib,
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   110
				  U_lemma1, U_lemma2, U_F3] ) 1);
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   111
val U_lemma123 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   112
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   113
(*Misra's F4*)
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   114
Goal "Mutex : {s. u s} LeadsTo {s. p s}";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   115
by (rtac ([invariantU, U_lemma123] MRS Invariant_LeadsTo_weaken) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   116
by Auto_tac;
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   117
qed "u_Leadsto_p";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   118
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   119
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   120
(*** Progress for V ***)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   121
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   122
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   123
Goalw [Unless_def] "Mutex : {s. n s=#2} Unless {s. n s=#3}";
5426
566f47250bd0 A new approach, using simp_of_act and simp_of_set to activate definitions when
paulson
parents: 5424
diff changeset
   124
by (constrains_tac 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   125
qed "V_F0";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   126
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   127
Goal "Mutex : {s. n s=#1} LeadsTo {s. p s = (~ u s) & n s = #2}";
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   128
by (ensures_tac "V1" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   129
qed "V_F1";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   130
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   131
Goal "Mutex : {s. p s & n s = #2} LeadsTo {s. n s = #3}";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5320
diff changeset
   132
by (cut_facts_tac [invariantV] 1);
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   133
by (ensures_tac "V2" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   134
qed "V_F2";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   135
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   136
Goal "Mutex : {s. n s = #3} LeadsTo {s. ~ p s}";
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   137
by (res_inst_tac [("B", "{s. n s = #4}")] LeadsTo_Trans 1);
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   138
by (ensures_tac "V4" 2);
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   139
by (ensures_tac "V3" 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   140
qed "V_F3";
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   141
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   142
Goal "Mutex : {s. n s = #2} LeadsTo {s. ~ p s}";
5340
d75c03cf77b5 Misc changes
paulson
parents: 5320
diff changeset
   143
by (rtac ([LeadsTo_weaken_L, Int_lower2 RS subset_imp_LeadsTo] 
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   144
	  MRS LeadsTo_Diff) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   145
by (rtac ([V_F2, V_F3] MRS LeadsTo_Trans) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   146
by (auto_tac (claset() addSEs [less_SucE], simpset()));
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   147
val V_lemma2 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   148
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   149
Goal "Mutex : {s. n s = #1} LeadsTo {s. ~ p s}";
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   150
by (rtac ([V_F1 RS LeadsTo_weaken_R, V_lemma2] MRS LeadsTo_Trans) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   151
by (Blast_tac 1);
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   152
val V_lemma1 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   153
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   154
Goal "Mutex : {s. #1 <= n s & n s <= #3} LeadsTo {s. ~ p s}";
5596
b29d18d8c4d2 abstype of programs
paulson
parents: 5426
diff changeset
   155
by (simp_tac (simpset() addsimps [eq_123, Collect_disj_eq, LeadsTo_Un_distrib,
5240
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   156
				  V_lemma1, V_lemma2, V_F3] ) 1);
bbcd79ef7cf2 Constant "invariant" and new constrains_tac, ensures_tac
paulson
parents: 5232
diff changeset
   157
val V_lemma123 = result();
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   158
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   159
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   160
(*Misra's F4*)
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   161
Goal "Mutex : {s. v s} LeadsTo {s. ~ p s}";
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   162
by (rtac ([invariantV, V_lemma123] MRS Invariant_LeadsTo_weaken) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   163
by Auto_tac;
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   164
qed "v_Leadsto_not_p";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   165
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   166
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   167
(** Absence of starvation **)
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   168
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   169
(*Misra's F6*)
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   170
Goal "Mutex : {s. m s = #1} LeadsTo {s. m s = #3}";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   171
by (rtac LeadsTo_Un_duplicate 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   172
by (rtac LeadsTo_cancel2 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   173
by (rtac U_F2 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   174
by (simp_tac (simpset() addsimps [Collect_conj_eq] ) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   175
by (stac Un_commute 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   176
by (rtac LeadsTo_Un_duplicate 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   177
by (rtac ([v_Leadsto_not_p, U_F0] MRS PSP_Unless RSN(2, LeadsTo_cancel2)) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   178
by (rtac (U_F1 RS LeadsTo_weaken_R) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   179
by (auto_tac (claset() addSEs [less_SucE], simpset()));
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   180
qed "m1_Leadsto_3";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   181
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   182
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   183
(*The same for V*)
6565
de4acf4449fa renamed state variables
paulson
parents: 6536
diff changeset
   184
Goal "Mutex : {s. n s = #1} LeadsTo {s. n s = #3}";
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   185
by (rtac LeadsTo_Un_duplicate 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   186
by (rtac LeadsTo_cancel2 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   187
by (rtac V_F2 2);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   188
by (simp_tac (simpset() addsimps [Collect_conj_eq] ) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   189
by (stac Un_commute 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   190
by (rtac LeadsTo_Un_duplicate 1);
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   191
by (rtac ([u_Leadsto_p, V_F0] MRS PSP_Unless  RSN(2, LeadsTo_cancel2)) 1);
4776
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   192
by (rtac (V_F1 RS LeadsTo_weaken_R) 1);
1f9362e769c1 New UNITY theory
paulson
parents:
diff changeset
   193
by (auto_tac (claset() addSEs [less_SucE], simpset()));
5313
1861a564d7e2 Constrains, Stable, Invariant...more of the substitution axiom, but Union
paulson
parents: 5277
diff changeset
   194
qed "n1_Leadsto_3";