From ed72a1e9ba37a9fa2674da8f46bb0597a1721c2d Mon Sep 17 00:00:00 2001 From: VoyagerOne Date: Sat, 19 Dec 2015 15:58:45 -0500 Subject: [PATCH] Remove killer move conditions from LMR STC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 8459 W: 1619 L: 1477 D: 5363 LTC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 32239 W: 4404 L: 4299 D: 23536 Bench: 7597031 Resolves #534 --- src/search.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index a35438be..9d091d02 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -982,9 +982,7 @@ moves_loop: // When in check search starts from here // re-searched at full depth. if ( depth >= 3 * ONE_PLY && moveCount > 1 - && !captureOrPromotion - && move != ss->killers[0] - && move != ss->killers[1]) + && !captureOrPromotion) { ss->reduction = reduction(improving, depth, moveCount); -- 2.39.2