mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
Remove some useless casts
No functional change.
This commit is contained in:
+2
-2
@@ -146,8 +146,8 @@ void Search::init() {
|
||||
// Init futility move count array
|
||||
for (d = 0; d < 32; ++d)
|
||||
{
|
||||
FutilityMoveCounts[0][d] = int(2.4 + 0.222 * pow(d + 0.00, 1.8));
|
||||
FutilityMoveCounts[1][d] = int(3.0 + 0.300 * pow(d + 0.98, 1.8));
|
||||
FutilityMoveCounts[0][d] = 2.4 + 0.222 * pow(d + 0.00, 1.8);
|
||||
FutilityMoveCounts[1][d] = 3.0 + 0.300 * pow(d + 0.98, 1.8);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user