merged
authornipkow
Sat, 17 Jan 2009 12:38:50 +0100
changeset 29529 70ef35ccdc3b
parent 29527 7178c11b6bc1 (current diff)
parent 29528 00fe02648e5d (diff)
child 29543 64cc846d4a63
child 29548 02a52ae34b7a
merged
--- a/src/HOL/Tools/lin_arith.ML	Sat Jan 17 08:30:06 2009 +0100
+++ b/src/HOL/Tools/lin_arith.ML	Sat Jan 17 12:38:50 2009 +0100
@@ -340,7 +340,7 @@
 
 fun subst_term ([] : (term * term) list) (t : term) = t
   | subst_term pairs                     t          =
-      (case AList.lookup (op aconv) pairs t of
+      (case AList.lookup Pattern.aeconv pairs t of
         SOME new =>
           new
       | NONE     =>
@@ -682,7 +682,7 @@
 
 fun negated_term_occurs_positively (terms : term list) : bool =
   List.exists
-    (fn (Trueprop $ (Const ("Not", _) $ t)) => member (op aconv) terms (Trueprop $ t)
+    (fn (Trueprop $ (Const ("Not", _) $ t)) => member Pattern.aeconv terms (Trueprop $ t)
       | _                                   => false)
     terms;