tuned terms_of_tpairs;
authorwenzelm
Sun, 22 May 2005 16:51:12 +0200
changeset 16024 ffe25459c72a
parent 16023 66561f6814bd
child 16025 fa2d7364d359
tuned terms_of_tpairs;
src/Pure/thm.ML
--- a/src/Pure/thm.ML	Sun May 22 16:51:11 2005 +0200
+++ b/src/Pure/thm.ML	Sun May 22 16:51:12 2005 +0200
@@ -300,7 +300,7 @@
   tpairs: (term * term) list,  (*flex-flex pairs*)
   prop: term};                 (*conclusion*)
 
-fun terms_of_tpairs tpairs = List.concat (map (op @ o pairself single) tpairs);
+fun terms_of_tpairs tpairs = List.concat (map (fn (t, u) => [t, u]) tpairs);
 
 fun attach_tpairs tpairs prop =
   Logic.list_implies (map Logic.mk_equals tpairs, prop);