Skip to content

Commit

Permalink
Take 2, scale this to reasonable sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
rn5f107s2 authored Dec 31, 2024
1 parent cb0113b commit 94e0349
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 @@ -1020,7 +1020,7 @@ Value Search::Worker::search(
(*contHist[0])[movedPiece][move.to_sq()]
+ (*contHist[1])[movedPiece][move.to_sq()]
+ thisThread->pawnHistory[pawn_structure_index(pos)][movedPiece][move.to_sq()]
+ threatenedAdjustment;
+ threatenedAdjustment / 5;

// Continuation history based pruning (~2 Elo)
if (history < -3884 * depth)
Expand Down

0 comments on commit 94e0349

Please sign in to comment.