Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
depth > 6
  • Loading branch information
MJZ1977 committed Jan 3, 2019
1 parent f893803 commit 4040278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search.cpp
Expand Up @@ -649,10 +649,10 @@ namespace {
: ttHit ? tte->move() : MOVE_NONE;

pvHit = false;
if (depth > 8 * ONE_PLY && !excludedMove)
if (depth > 6 * ONE_PLY && !excludedMove)
{
pvHit = (std::find(pvPos.begin(),pvPos.end(),posKey) != pvPos.end());
if (!pvHit && PvNode && pvPos.size() < 2000)
if (!pvHit && PvNode && pvPos.size() < 5000)
{
pvPos.push_back(posKey);
pvHit = true;
Expand Down

0 comments on commit 4040278

Please sign in to comment.