diff --git a/src/searchpos.h b/src/searchpos.h index 45a6ab05..b24a7065 100644 --- a/src/searchpos.h +++ b/src/searchpos.h @@ -186,10 +186,9 @@ class SearchPos { ply = base.getGame(ie).search(board_, nPieces_); if (ply != 0) filter.set(i, (ply > 255) ? 255 : ply); - - if ((progress++ % 256) == 0 && !prg.report(i, n)) - return false; } + if (progress++ % 512 == 0 && !prg.report(i, n)) + return false; } return true; }