From: Reuven Peleg Date: Wed, 25 Sep 2013 11:04:38 +0000 (+0300) Subject: Simplify tte use condition X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=8d1c1074d5d85a87e69f75cd13a0f2bf11626666 Simplify tte use condition No functional change. --- diff --git a/src/search.cpp b/src/search.cpp index 63c9e076..0b87b456 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -609,8 +609,7 @@ namespace { // Can ttValue be used as a better position evaluation? if (ttValue != VALUE_NONE) - if ( ((tte->bound() & BOUND_LOWER) && ttValue > eval) - || ((tte->bound() & BOUND_UPPER) && ttValue < eval)) + if (tte->bound() & (ttValue > eval ? BOUND_LOWER : BOUND_UPPER)) eval = ttValue; } else