From 4bdba32545084a625dcbc2e908ca890433f6a307 Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Tue, 30 Oct 2018 20:11:59 +0100 Subject: [PATCH] Less move count pruning for drop variants crazyhouse STC LLR: 2.97 (-2.94,2.94) [0.00,10.00] Total: 1472 W: 780 L: 658 D: 34 http://35.161.250.236:6543/tests/view/5bd8ad6e6e23db7639060c37 --- src/search.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index 6528572..e8a274e 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -895,7 +895,7 @@ moves_loop: // When in check, search starts from here movedPiece = pos.moved_piece(move); givesCheck = gives_check(pos, move); - moveCountPruning = depth < 16 * ONE_PLY + moveCountPruning = depth * (1 + pos.captures_to_hand()) < 16 * ONE_PLY && moveCount >= FutilityMoveCounts[improving][depth / ONE_PLY]; // Step 13. Extensions (~70 Elo) -- 1.7.0.4