Skip to content

Commit

Permalink
Quick TM Fix
Browse files Browse the repository at this point in the history
Flags when low time and long (3s+) increment
  • Loading branch information
TampliteSK committed Jun 12, 2024
1 parent f8c8c8d commit 7770d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/uci.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void ParseGo(char* line, S_SEARCHINFO *info, S_BOARD *pos, S_HASHTABLE *table) {

// time /= movestogo;
time -= 50; // overhead
info->stoptime = info->starttime + time + inc;
info->stoptime = info->starttime + time + inc/2; // falsely believes you can spend the inc and gain it back, but flags regardless
}

if(depth == -1) {
Expand Down

0 comments on commit 7770d7d

Please sign in to comment.