src/Provers/simplifier.ML
changeset 10821 dcb75538f542
parent 10412 1a1b4c1b2b7c
child 11669 4f7ad093b413
--- a/src/Provers/simplifier.ML	Sun Jan 07 21:40:49 2001 +0100
+++ b/src/Provers/simplifier.ML	Sun Jan 07 21:41:56 2001 +0100
@@ -542,10 +542,11 @@
 
 fun simp_method (prems, tac) ctxt = Method.METHOD (fn facts =>
   ALLGOALS (Method.insert_tac (prems @ facts)) THEN
-    (CHANGED o ALLGOALS o tac) (get_local_simpset ctxt));
+    (CHANGED_PROP o ALLGOALS o tac) (get_local_simpset ctxt));
 
 fun simp_method' (prems, tac) ctxt = Method.METHOD (fn facts =>
-  HEADGOAL (Method.insert_tac (prems @ facts) THEN' (CHANGED oo tac) (get_local_simpset ctxt)));
+  HEADGOAL (Method.insert_tac (prems @ facts) THEN'
+      (CHANGED_PROP oo tac) (get_local_simpset ctxt)));
 
 
 (* setup_methods *)