src/HOL/Finite.ML
changeset 5782 7559f116cb10
parent 5626 f67c34721486
child 6024 cb87f103d114
--- a/src/HOL/Finite.ML	Fri Oct 30 15:59:51 1998 +0100
+++ b/src/HOL/Finite.ML	Sat Oct 31 12:42:34 1998 +0100
@@ -591,8 +591,7 @@
 
 Open_locale "LC"; 
 
-(*Strip meta-quantifiers: perhaps the locale should do this?*)
-val f_lcomm = forall_elim_vars 0 (thm "lcomm");
+val f_lcomm = thm "lcomm";
 
 
 Goal "ALL A x. card(A) < n --> (A, x) : foldSet f e --> \
@@ -680,10 +679,9 @@
 
 Open_locale "ACe"; 
 
-(*Strip meta-quantifiers: perhaps the locale should do this?*)
-val f_ident   = forall_elim_vars 0 (thm "ident");
-val f_commute = forall_elim_vars 0 (thm "commute");
-val f_assoc   = forall_elim_vars 0 (thm "assoc");
+val f_ident   = thm "ident";
+val f_commute = thm "commute";
+val f_assoc   = thm "assoc";
 
 
 Goal "f x (f y z) = f y (f x z)";