regular merge with no historization, in accordance with regular update
authorhaftmann
Wed, 04 Dec 2019 20:25:21 +0000
changeset 71234 f1838cf9f139
parent 71233 da28fd2852ed
child 71235 d12c58e12c51
child 71236 6c1ed478605e
regular merge with no historization, in accordance with regular update
src/Pure/raw_simplifier.ML
--- a/src/Pure/raw_simplifier.ML	Wed Dec 04 23:11:29 2019 +0100
+++ b/src/Pure/raw_simplifier.ML	Wed Dec 04 20:25:21 2019 +0000
@@ -336,7 +336,7 @@
       val rules' = Net.merge eq_rrule (rules1, rules2);
       val prems' = Thm.merge_thms (prems1, prems2);
       val depth' = if #1 depth1 < #1 depth2 then depth2 else depth1;
-      val congs' = merge (Thm.eq_thm_prop o apply2 #2) (congs1, congs2);
+      val congs' = AList.merge (op =) (K true) (congs1, congs2);
       val weak' = merge (op =) (weak1, weak2);
       val procs' = Net.merge eq_proc (procs1, procs2);
       val loop_tacs' = AList.merge (op =) (K true) (loop_tacs1, loop_tacs2);