Fix Intel compiler warnings

Fallout from previous patch: Intel compiler
is very noisy.

No functional change.
This commit is contained in:
Marco Costalba
2014-04-27 12:02:36 +02:00
parent 86c20416c8
commit 93e3b06fe2
4 changed files with 8 additions and 8 deletions

View File

@@ -146,8 +146,8 @@ void Search::init() {
// Init futility move count array
for (d = 0; d < 32; ++d)
{
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);
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));
}
}