mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 00:26:33 +08:00
Store score in TT when null search fails high
Use full depth, not reduced one. This allows to avoid to do a null search when in the same position and at the same or bigger depth the null search failed high. A very small increase, if any. After 963 games at 1+0 Mod vs Orig: +158 =657 -147 +4 ELO Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -125,6 +125,7 @@ void TranspositionTable::store(const Key posKey, Value v, ValueType t, Depth d,
|
||||
if (tte->key() && t == VALUE_TYPE_EV_LO)
|
||||
return;
|
||||
|
||||
// Preserve any exsisting ttMove
|
||||
if (m == MOVE_NONE)
|
||||
m = tte->move();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user