]> git.sesse.net Git - stockfish/commitdiff
Remove bonus for killers.
authorlonfom169 <lomalfredo8@gmail.com>
Thu, 26 Nov 2020 12:40:54 +0000 (09:40 -0300)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Sun, 29 Nov 2020 15:40:06 +0000 (16:40 +0100)
Passed non-regression STC:
LLR: 2.94 (-2.94,2.94) {-1.25,0.25}
Total: 14712 W: 1416 L: 1315 D: 11981
Ptnml(0-2): 59, 1029, 5082, 1124, 62
https://tests.stockfishchess.org/tests/view/5fbfa31f67cbf42301d6b36e

Passed non-regression LTC:
LLR: 2.95 (-2.94,2.94) {-0.75,0.25}
Total: 27536 W: 1099 L: 1044 D: 25393
Ptnml(0-2): 11, 929, 11838, 974, 16
https://tests.stockfishchess.org/tests/view/5fbfac9167cbf42301d6b371

closes https://github.com/official-stockfish/Stockfish/pull/3241

Bench: 3887644

src/search.cpp

index 7c797bef4087a2e62d58a1fe88359763fbe139e9..d854cd95d1d5dc75b13b698b0f95cf0de7485191 100644 (file)
@@ -1257,9 +1257,6 @@ moves_loop: // When in check, search starts from here
               int bonus = value > alpha ?  stat_bonus(newDepth)
                                         : -stat_bonus(newDepth);
 
               int bonus = value > alpha ?  stat_bonus(newDepth)
                                         : -stat_bonus(newDepth);
 
-              if (move == ss->killers[0])
-                  bonus += bonus / 4;
-
               update_continuation_histories(ss, movedPiece, to_sq(move), bonus);
           }
       }
               update_continuation_histories(ss, movedPiece, to_sq(move), bonus);
           }
       }