From 26e7673c1894d6406638526f23d8a009f227fef3 Mon Sep 17 00:00:00 2001 From: Joona Kiiski Date: Thu, 3 Feb 2011 00:49:26 +0200 Subject: [PATCH] Retire some conditions from ok_to_use_TT_pv After 4844 games 768 - 747 - 3329 ELO +2 Signed-off-by: Marco Costalba --- src/search.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/search.cpp b/src/search.cpp index 791cbc6f..3009799c 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1815,10 +1815,7 @@ split_point_start: // At split points actual search starts from here Value v = value_from_tt(tte->value(), ply); return tte->depth() >= depth - && tte->type() == VALUE_TYPE_EXACT - && tte->move() != MOVE_NONE - && v < beta - && v > alpha; + && tte->type() == VALUE_TYPE_EXACT; } -- 2.39.2