Skip to content

Commit

Permalink
Remove quiet history pruning depth limit
Browse files Browse the repository at this point in the history
  • Loading branch information
PikaCat-OuO committed Jul 14, 2024
1 parent 8fbed0b commit e3022cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ Value Search::Worker::search(
+ thisThread->pawnHistory[pawn_structure_index(pos)][movedPiece][move.to_sq()];

// Continuation history based pruning (~2 Elo)
if (lmrDepth < 7 && history < -3653 * depth)
if (history < -3653 * depth)
continue;

history += 2 * thisThread->mainHistory[us][move.from_to()];
Expand Down

0 comments on commit e3022cb

Please sign in to comment.