# HG changeset patch # User wenzelm # Date 1003082831 -7200 # Node ID b87aa292f50b4dc3e9552cd54f28c9d05d534ab1 # Parent 122be3f5b4b73f91834a5c7fe6eee24601a42a4d fixed auto steps (due to changed atomize); diff -r 122be3f5b4b7 -r b87aa292f50b src/HOL/CTL/CTL.thy --- a/src/HOL/CTL/CTL.thy Sun Oct 14 20:06:13 2001 +0200 +++ b/src/HOL/CTL/CTL.thy Sun Oct 14 20:07:11 2001 +0200 @@ -292,8 +292,8 @@ proof have "\ p \ p \ \ p" .. also have "p \ \ (p \ \ p) = \ p" by (rule AG_induct) - also note Int_mono AG_mono - ultimately show "?lhs \ \ p" by auto + also note Int_mono AG_mono + ultimately show "?lhs \ \ p" by fast next have "\ p \ p" by (rule AG_fp_1) moreover diff -r 122be3f5b4b7 -r b87aa292f50b src/HOL/Unix/Unix.thy --- a/src/HOL/Unix/Unix.thy Sun Oct 14 20:06:13 2001 +0200 +++ b/src/HOL/Unix/Unix.thy Sun Oct 14 20:07:11 2001 +0200 @@ -696,7 +696,7 @@ xs_y: "r =(xs @ [y])\ root''" by (auto simp add: can_exec_def transitions_nil_eq transitions_cons_eq) from xs_y hyp obtain root' r' where xs: "r =xs\ root'" and y: "root' \y\ r'" - by (auto simp add: can_exec_def) + by (unfold can_exec_def) blast from x xs have "root =(x # xs)\ root'" by (rule transitions.cons) with y show ?thesis by blast