Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
param 8 - 14 - 36
  • Loading branch information
MJZ1977 committed Jun 7, 2019
1 parent 8b9a507 commit 9748ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -1236,7 +1236,7 @@ namespace {
int progrIndex = std::min(ss->ply, pos.rule50_count());
if (progrIndex > 8)
progrIndex = progrIndex * 8 / (1 + popcount((ss-progrIndex)->posPieces ^ ss->posPieces));
progrIndex = 64 - clamp(progrIndex - 16, 0, 32);
progrIndex = 64 - clamp(progrIndex - 14, 0, 36);

if (PvNode)
{
Expand Down

0 comments on commit 9748ef2

Please sign in to comment.