Skip to content

Commit

Permalink
opposite sign
Browse files Browse the repository at this point in the history
  • Loading branch information
ianfab committed Jan 24, 2021
1 parent 392a573 commit 2b53e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -1152,7 +1152,7 @@ namespace {
&& (*contHist[0])[history_slot(movedPiece)][to_sq(move)]
+ (*contHist[1])[history_slot(movedPiece)][to_sq(move)]
+ (*contHist[3])[history_slot(movedPiece)][to_sq(move)]
+ (*contHist[5])[history_slot(movedPiece)][to_sq(move)] / 2 < 27376 - 1000 * pos.check_counting() + 500 * (pos.extinction_value() != VALUE_NONE) + 500 * pos.captures_to_hand() + 500 * pos.blast_on_capture())
+ (*contHist[5])[history_slot(movedPiece)][to_sq(move)] / 2 < 27376 + 1000 * pos.check_counting() - 500 * (pos.extinction_value() != VALUE_NONE) - 500 * pos.captures_to_hand() - 500 * pos.blast_on_capture())
continue;

// Prune moves with negative SEE (~20 Elo)
Expand Down

0 comments on commit 2b53e9c

Please sign in to comment.