mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Document old test result
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
d72e862a5b
commit
e63ab4bd03
1 changed files with 3 additions and 1 deletions
|
@ -1283,7 +1283,9 @@ namespace {
|
|||
continue;
|
||||
|
||||
// Value based pruning
|
||||
Depth predictedDepth = newDepth - reduction<NonPV>(depth, moveCount); // FIXME We illogically ignore reduction condition depth >= 3*OnePly
|
||||
// We illogically ignore reduction condition depth >= 3*OnePly for predicted depth,
|
||||
// but fixing this made program slightly weaker.
|
||||
Depth predictedDepth = newDepth - reduction<NonPV>(depth, moveCount);
|
||||
futilityValueScaled = ss[ply].eval + futility_margin(predictedDepth, moveCount)
|
||||
+ H.gain(pos.piece_on(move_from(move)), move_to(move));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue