src/HOLCF/IOA/meta_theory/Traces.ML
changeset 3521 bdc51b4c6050
parent 3457 a8ab7c64817c
child 3842 b55686a7b22c
--- a/src/HOLCF/IOA/meta_theory/Traces.ML	Wed Jul 16 11:34:42 1997 +0200
+++ b/src/HOLCF/IOA/meta_theory/Traces.ML	Thu Jul 17 12:43:32 1997 +0200
@@ -162,18 +162,18 @@
    this condition is included once more. (see Lemmas 1.1.1c in CompoExecs for example) *)
 
 goal thy 
-  "!! A. IOA A ==> \
+  "!! A. is_trans_of A ==> \
 \ ! s. is_exec_frag A (s,xs) --> Forall (%a.a:act A) (filter_act`xs)";
 
 by (pair_induct_tac "xs" [is_exec_frag_def,Forall_def,sforall_def] 1);
 (* main case *)
 ren "ss a t" 1;
 by (safe_tac set_cs);
-by (REPEAT (asm_full_simp_tac (!simpset addsimps [ioa_def,state_trans_def]) 1));
+by (REPEAT (asm_full_simp_tac (!simpset addsimps [is_trans_of_def]) 1));
 qed"execfrag_in_sig";
 
 goal thy 
-  "!! A.[|  IOA A; x:executions A |] ==> \
+  "!! A.[|  is_trans_of A; x:executions A |] ==> \
 \ Forall (%a.a:act A) (filter_act`(snd x))";
 
 by (asm_full_simp_tac (!simpset addsimps [executions_def]) 1);
@@ -183,7 +183,7 @@
 qed"exec_in_sig";
 
 goalw thy [schedules_def,has_schedule_def]
-  "!! A.[|  IOA A; x:schedules A |] ==> \
+  "!! A.[|  is_trans_of A; x:schedules A |] ==> \
 \   Forall (%a.a:act A) x";
 
 by (fast_tac (!claset addSIs [exec_in_sig]) 1);