mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Always check repetition
It seems stronger both at fast 15+0.05 TC with fixed game number test: ELO: 2.74 +-2.7 (95%) LOS: 97.6% Total: 24000 W: 4698 L: 4509 D: 14793 And also at long 60+0.05 TC with SPRT LLR: 3.05 (-2.94,2.94) Total: 38986 W: 6845 L: 6547 D: 25594 bench: 5157061
This commit is contained in:
parent
a95cbca568
commit
75221fcf5e
1 changed files with 1 additions and 1 deletions
|
@ -1129,7 +1129,7 @@ split_point_start: // At split points actual search starts from here
|
|||
ss->ply = (ss-1)->ply + 1;
|
||||
|
||||
// Check for an instant draw or maximum ply reached
|
||||
if (pos.is_draw<true>() || ss->ply > MAX_PLY)
|
||||
if (pos.is_draw<false>() || ss->ply > MAX_PLY)
|
||||
return DrawValue[pos.side_to_move()];
|
||||
|
||||
// Decide whether or not to include checks, this fixes also the type of
|
||||
|
|
Loading…
Add table
Reference in a new issue