mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 03:57:45 +00:00
Fix a skill level problem: Don't allow move pruning at root node
Bench: 8918745 Resolves #231
This commit is contained in:
committed by
Joona Kiiski
parent
ec36b8dea9
commit
d8b3ad2208
+2
-1
@@ -831,7 +831,8 @@ moves_loop: // When in check and at SpNode search starts from here
|
||||
newDepth = depth - ONE_PLY + extension;
|
||||
|
||||
// Step 13. Pruning at shallow depth
|
||||
if ( !captureOrPromotion
|
||||
if ( !RootNode
|
||||
&& !captureOrPromotion
|
||||
&& !inCheck
|
||||
&& !dangerous
|
||||
&& bestValue > VALUE_MATED_IN_MAX_PLY)
|
||||
|
||||
Reference in New Issue
Block a user