Skip to content

Commit

Permalink
Bench: 2793038
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Dec 2, 2024
1 parent 5eb129e commit 44170bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/history.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ INLINE int GetEvalCorrection(Board* board, SearchStack* ss, ThreadData* thread)
const int nonPawnCorrection = GetNonPawnCorrection(board, thread);
const int contCorrection = GetContCorrection(ss, thread);

return pawnCorrection / 2 + nonPawnCorrection / 2 + contCorrection;
return pawnCorrection / 2 + nonPawnCorrection / 4 + contCorrection;
}

void UpdateHistories(SearchStack* ss,
Expand Down

0 comments on commit 44170bf

Please sign in to comment.