src/HOL/Tools/groebner.ML
changeset 52467 24c6ddb48cb8
parent 52086 fcb40cadc173
child 54251 adea9f6986b2
--- a/src/HOL/Tools/groebner.ML	Thu Jun 27 12:34:58 2013 +0200
+++ b/src/HOL/Tools/groebner.ML	Thu Jun 27 17:06:22 2013 +0200
@@ -388,9 +388,9 @@
 fun refute_disj rfn tm =
  case term_of tm of
   Const(@{const_name HOL.disj},_)$l$r =>
-   Drule.compose_single
+   Drule.compose
     (refute_disj rfn (Thm.dest_arg tm), 2,
-      Drule.compose_single (refute_disj rfn (Thm.dest_arg1 tm), 2, disjE))
+      Drule.compose (refute_disj rfn (Thm.dest_arg1 tm), 2, disjE))
   | _ => rfn tm ;
 
 val notnotD = @{thm notnotD};