From: Marco Costalba Date: Fri, 27 Nov 2009 14:35:34 +0000 (+0100) Subject: Use move not ttMove in exclude search X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=25c22ffe7ad94f76e4330626adb50304b8392d66;hp=25c22ffe7ad94f76e4330626adb50304b8392d66;ds=sidebyside Use move not ttMove in exclude search If we arrive until the exclusion search call then we know that move == ttMove == tte->move() But using ttMove in search call while, during excluded search conditions we have used tte->Move()could be a little bit suboptimal. On the other side using tte->move() also in search call is a bit ugly so opt for the third choice that is the most clean becasue from the conditions the reader easily understands that we are talking of ttMove and that we ant to exclude the move we are evaluating in that moment. Signed-off-by: Marco Costalba ---