mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
Add a second margin to razoring
Razor on ply one if the advantage is more then a pawn, the only way to gap the advantage is to capture, so go directly in quiesce. This seems to have a positive effect. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+2
-1
@@ -1122,7 +1122,8 @@ namespace {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Null move search not allowed, try razoring
|
// Null move search not allowed, try razoring
|
||||||
else if (depth < RazorDepth && approximateEval < beta - RazorMargin)
|
else if ( (approximateEval < beta - RazorMargin && depth < RazorDepth)
|
||||||
|
||(approximateEval < beta - PawnValueMidgame && depth <= OnePly))
|
||||||
{
|
{
|
||||||
Value v = qsearch(pos, ss, beta-1, beta, Depth(0), ply, threadID);
|
Value v = qsearch(pos, ss, beta-1, beta, Depth(0), ply, threadID);
|
||||||
if (v < beta)
|
if (v < beta)
|
||||||
|
|||||||
Reference in New Issue
Block a user