mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Reintroduce permanent PV entries in TT
We are now ready to release so restore this improvment before 2.1 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
9c5a53ca45
commit
5ef2b8c494
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ void TranspositionTable::store(const Key posKey, Value v, ValueType t, Depth d,
|
|||
|
||||
// Implement replace strategy
|
||||
c1 = (replace->generation() == generation ? 2 : 0);
|
||||
c2 = (tte->generation() == generation ? -2 : 0);
|
||||
c2 = (tte->generation() == generation || tte->type() == VALUE_TYPE_EXACT ? -2 : 0);
|
||||
c3 = (tte->depth() < replace->depth() ? 1 : 0);
|
||||
|
||||
if (c1 + c2 + c3 > 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue