mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
Do more futility pruning
closes https://github.com/official-stockfish/Stockfish/pull/6433 Bench: 2469519
This commit is contained in:
committed by
Joost VandeVondele
parent
61149ac9ee
commit
035cb146d4
+1
-1
@@ -857,7 +857,7 @@ Value Search::Worker::search(
|
||||
// The depth condition is important for mate finding.
|
||||
{
|
||||
auto futility_margin = [&](Depth d) {
|
||||
Value futilityMult = 91 - 21 * !ss->ttHit;
|
||||
Value futilityMult = 81 - 21 * !ss->ttHit;
|
||||
|
||||
return futilityMult * d //
|
||||
- 2094 * improving * futilityMult / 1024 //
|
||||
|
||||
Reference in New Issue
Block a user