From 87958314ccb360725bad5f81a9dcb9ed92fd00da Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Fri, 3 Jul 2020 16:19:41 +0200 Subject: [PATCH] Skip NMP for reversi reversi LLR: 2.95 (-2.94,2.94) [0.00,10.00] Total: 280 W: 174 L: 78 D: 28 --- src/search.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index c88632e..ea886d3 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -922,6 +922,7 @@ namespace { && !excludedMove && pos.non_pawn_material(us) && pos.count(~us) != pos.count(~us) + && !pos.flip_enclosed_pieces() && (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor)) { assert(eval - beta >= 0); -- 1.7.0.4