mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
TEST: extend when few moves available
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+2
-1
@@ -931,6 +931,7 @@ namespace {
|
|||||||
{
|
{
|
||||||
assert(move_is_ok(move));
|
assert(move_is_ok(move));
|
||||||
|
|
||||||
|
bool fewMoves = (depth <= OnePly && mp.number_of_moves() < 4);
|
||||||
bool singleReply = (pos.is_check() && mp.number_of_moves() == 1);
|
bool singleReply = (pos.is_check() && mp.number_of_moves() == 1);
|
||||||
bool moveIsCheck = pos.move_is_check(move, dcCandidates);
|
bool moveIsCheck = pos.move_is_check(move, dcCandidates);
|
||||||
bool moveIsCapture = pos.move_is_capture(move);
|
bool moveIsCapture = pos.move_is_capture(move);
|
||||||
@@ -942,7 +943,7 @@ namespace {
|
|||||||
PawnValueMidgame : pos.midgame_value_of_piece_on(move_to(move));
|
PawnValueMidgame : pos.midgame_value_of_piece_on(move_to(move));
|
||||||
|
|
||||||
// Decide the new search depth
|
// Decide the new search depth
|
||||||
Depth ext = extension(pos, move, true, moveIsCheck, singleReply, mateThreat);
|
Depth ext = extension(pos, move, true, moveIsCheck, singleReply || fewMoves, mateThreat);
|
||||||
Depth newDepth = depth - OnePly + ext;
|
Depth newDepth = depth - OnePly + ext;
|
||||||
|
|
||||||
// Make and search the move
|
// Make and search the move
|
||||||
|
|||||||
Reference in New Issue
Block a user