proper weight, instead of magic number 1000000 (see b3f190995bc9);
authorwenzelm
Sun, 06 Jul 2025 11:35:18 +0200
changeset 82813 b185d1441092
parent 82812 ea8d633fd4a8
child 82814 de15cf3e6325
proper weight, instead of magic number 1000000 (see b3f190995bc9);
src/Provers/classical.ML
--- a/src/Provers/classical.ML	Sun Jul 06 11:33:23 2025 +0200
+++ b/src/Provers/classical.ML	Sun Jul 06 11:35:18 2025 +0200
@@ -263,7 +263,7 @@
   then rules added most recently (preferring the head of the list).*)
 fun tag_brls k [] = []
   | tag_brls k (brl::brls) =
-      ({weight = 0, index = 1000000*Bires.subgoals_of brl + k}, brl) ::
+      ({weight = Bires.subgoals_of brl, index = k}, brl) ::
       tag_brls (k+1) brls;
 
 fun tag_brls' _ _ [] = []