Skip to content

Commit

Permalink
singular margin += 20*pvHit
Browse files Browse the repository at this point in the history
Bench: 3115075
  • Loading branch information
snicolet committed Jan 11, 2019
1 parent 9bd5e05 commit b480cc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -949,7 +949,7 @@ namespace {
&& tte->depth() >= depth - 3 * ONE_PLY
&& pos.legal(move))
{
Value singularBeta = std::max(ttValue - 2 * depth / ONE_PLY - 10 * pvHit, -VALUE_MATE);
Value singularBeta = std::max(ttValue - 2 * depth / ONE_PLY - 20 * pvHit, -VALUE_MATE);

ss->excludedMove = move;
value = search<NonPV>(pos, ss, singularBeta - 1, singularBeta, depth / 2, cutNode);
Expand Down

0 comments on commit b480cc4

Please sign in to comment.