Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion engine/movetimings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
uint64_t timemgmt(int64_t remtime, int64_t inc = 0, bool online = 0) {
// Return time in ms that we can spend on this move
if (online && remtime < 5000) return 100;
return std::max(1ll, (long long)(remtime * 0.15 + inc * 0.8));
return std::max(1ll, (long long)(remtime * 0.18 + inc * 0.9));
}
Loading