From 0cb6b1df8465f47229deb546edc908ecd6e561a4 Mon Sep 17 00:00:00 2001 From: bmc4 Date: Tue, 19 Oct 2021 15:44:08 -0300 Subject: [PATCH] Test bench: 6380807 --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index 55a68956..616cc5f6 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -673,7 +673,7 @@ namespace { // At non-PV nodes we check for an early TT cutoff if ( !PvNode && ss->ttHit - && tte->depth() >= depth + && tte->depth() > depth && ttValue != VALUE_NONE // Possible in case of TT access race && (ttValue >= beta ? (tte->bound() & BOUND_LOWER) : (tte->bound() & BOUND_UPPER)))