mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Evaluation drift
Increase evaluation score with ply. After 940 games at 1+0 Mod vs Orig +247 =487 -206 +15 ELO Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
6709b01903
commit
c81010a878
1 changed files with 4 additions and 0 deletions
|
@ -1543,7 +1543,11 @@ namespace {
|
|||
staticValue = tte->value();
|
||||
}
|
||||
else
|
||||
{
|
||||
staticValue = evaluate(pos, ei, threadID);
|
||||
if (!value_is_mate(staticValue + Value(ply)))
|
||||
staticValue += Value(ply);
|
||||
}
|
||||
|
||||
if (ply == PLY_MAX - 1)
|
||||
return evaluate(pos, ei, threadID);
|
||||
|
|
Loading…
Add table
Reference in a new issue