Skip to content

Commit 035cb14

Browse files
xu-shawnvondele
authored andcommitted
Do more futility pruning
closes official-stockfish#6433 Bench: 2469519
1 parent 61149ac commit 035cb14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ Value Search::Worker::search(
857857
// The depth condition is important for mate finding.
858858
{
859859
auto futility_margin = [&](Depth d) {
860-
Value futilityMult = 91 - 21 * !ss->ttHit;
860+
Value futilityMult = 81 - 21 * !ss->ttHit;
861861

862862
return futilityMult * d //
863863
- 2094 * improving * futilityMult / 1024 //

0 commit comments

Comments
 (0)