Remove some useless casts

No functional change.
This commit is contained in:
Marco Costalba
2014-04-27 11:40:44 +02:00
parent c9e396b542
commit 86c20416c8
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -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);
}
}