mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Don't need floor() in timeman.cpp
For positive numbers result is equivalent: http://stackoverflow.com/questions/3300290/cast-to-int-vs-floor Spotted by Joseph Ellis. No functional change.
This commit is contained in:
@@ -63,7 +63,7 @@ namespace {
|
|||||||
double ratio1 = (TMaxRatio * thisMoveImportance) / (TMaxRatio * thisMoveImportance + otherMovesImportance);
|
double ratio1 = (TMaxRatio * thisMoveImportance) / (TMaxRatio * thisMoveImportance + otherMovesImportance);
|
||||||
double ratio2 = (thisMoveImportance + TStealRatio * otherMovesImportance) / (thisMoveImportance + otherMovesImportance);
|
double ratio2 = (thisMoveImportance + TStealRatio * otherMovesImportance) / (thisMoveImportance + otherMovesImportance);
|
||||||
|
|
||||||
return int(floor(myTime * std::min(ratio1, ratio2)));
|
return int(myTime * std::min(ratio1, ratio2));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|||||||
Reference in New Issue
Block a user