Skip to content

Commit

Permalink
increase move overhead even more
Browse files Browse the repository at this point in the history
Bench: 6645600
  • Loading branch information
PGG106 committed Jan 3, 2024
1 parent 57207fb commit 68c01de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/time_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ void Optimum(S_SearchINFO* info, int time, int inc) {
// If ccrl sent us a negative time just assume we have a workable amount of time to search for a move
if (time < 0) time = 1000;
// Reserve some time overhead to avoid timing out in the engine-gui communication process
const int safety_overhead = std::min(150, time/2);
const int safety_overhead = std::min(300, time/2);
time -= safety_overhead;
// if we recieved a movetime command we need to spend exactly that amount of time on the move, so we don't scale
if (info->movetimeset) {
Expand Down
2 changes: 1 addition & 1 deletion src/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <cstdint>

#define NAME "Alexandria-5.1.13"
#define NAME "Alexandria-5.1.13.1"

// define bitboard data type
using Bitboard = uint64_t;
Expand Down

0 comments on commit 68c01de

Please sign in to comment.