mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-06 10:53:50 +08:00
Move-Count Formula Tweak
STC: LLR: 3.18 (-2.94,2.94) [0.00,4.00] Total: 55004 W: 10289 L: 9930 D: 34785 LTC: LLR: 2.96 (-2.94,2.94) [0.00,4.00] Total: 48184 W: 6401 L: 6128 D: 35655 Bench: 5960754
This commit is contained in:
@@ -175,8 +175,8 @@ void Search::init() {
|
||||
|
||||
for (int d = 0; d < 16; ++d)
|
||||
{
|
||||
FutilityMoveCounts[0][d] = int(2.4 + 0.773 * pow(d + 0.00, 1.8));
|
||||
FutilityMoveCounts[1][d] = int(2.9 + 1.045 * pow(d + 0.49, 1.8));
|
||||
FutilityMoveCounts[0][d] = int(2.4 + 0.74 * pow(d, 1.78));
|
||||
FutilityMoveCounts[1][d] = int(5.0 + 1.00 * pow(d, 2.00));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user