Explicit depth bounds seem necessary
authorpaulson
Wed, 09 Apr 1997 12:34:28 +0200
changeset 2923 f675fb52727b
parent 2922 580647a879cf
child 2924 af506c35b4ed
Explicit depth bounds seem necessary
src/FOL/ex/cla.ML
--- a/src/FOL/ex/cla.ML	Wed Apr 09 12:32:04 1997 +0200
+++ b/src/FOL/ex/cla.ML	Wed Apr 09 12:34:28 1997 +0200
@@ -512,7 +512,7 @@
 \                 ((C(y) & Q(w,y,y)) & OO(w,b) --> P(v,y) & OO(v,b))))) \
 \  -->                  \
 \  ~ (EX x. A(x) & (ALL y. C(y) --> (ALL z. D(x,y,z))))";
-by (Blast_tac 1);
+by (Blast.depth_tac (!claset) 12 1);
 result();
 
 
@@ -539,7 +539,7 @@
 \                        (C(y) & ~P(y,y) --> P(u,y) & OO(u,b))))) \
 \  -->                                                            \
 \  ~ (EX x. A(x) & (ALL y. C(y) --> (ALL z. D(x,y,z))))";
-by (Blast_tac 1);
+by (Blast.depth_tac(!claset) 7 1);
 result();
 
 (* Challenge found on info-hol *)
@@ -559,4 +559,5 @@
 (*Tue Mar  4 1997: loaded in 89s (on pochard) *)
 (*Thu Apr  3 1997: loaded in 44s (on pochard)--using mostly Blast_tac*)
 (*Thu Apr  3 1997: loaded in 96s (on pochard)--addition of two Halting Probs*)
+(*Thu Apr  3 1997: loaded in 98s (on pochard)--using lim-1 for all haz rules*)