Skip to content

Commit

Permalink
Age 80%
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Feb 2, 2024
1 parent 9815f17 commit a7be4cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Lynx/Search/IDDFS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,10 @@ private int CheckPonderHit(ref SearchResult? lastSearchResult, int depth)

for (int i = 0; i < _quietHistory.Length; i++)
{
Array.Clear(_quietHistory[i]);
for (int j = 0; j < _quietHistory[i].Length; j++)
{
_quietHistory[i][j] = _quietHistory[i][j] * 8 / 10;
}
}

// Not clearing _captureHistory on purpose
Expand Down

0 comments on commit a7be4cb

Please sign in to comment.