mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Fix a skill level problem: Don't allow move pruning at root node
Bench: 8918745 Resolves #231
This commit is contained in:
parent
ec36b8dea9
commit
d8b3ad2208
1 changed files with 2 additions and 1 deletions
|
@ -831,7 +831,8 @@ moves_loop: // When in check and at SpNode search starts from here
|
||||||
newDepth = depth - ONE_PLY + extension;
|
newDepth = depth - ONE_PLY + extension;
|
||||||
|
|
||||||
// Step 13. Pruning at shallow depth
|
// Step 13. Pruning at shallow depth
|
||||||
if ( !captureOrPromotion
|
if ( !RootNode
|
||||||
|
&& !captureOrPromotion
|
||||||
&& !inCheck
|
&& !inCheck
|
||||||
&& !dangerous
|
&& !dangerous
|
||||||
&& bestValue > VALUE_MATED_IN_MAX_PLY)
|
&& bestValue > VALUE_MATED_IN_MAX_PLY)
|
||||||
|
|
Loading…
Add table
Reference in a new issue