Skip to content

Commit

Permalink
Bench: 3030608
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Mar 7, 2024
1 parent 19317aa commit da90179
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/history.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
INLINE int GetQuietHistory(SearchStack* ss, ThreadData* thread, Move move) {
return (int) HH(thread->board.stm, move, thread->board.threatened) + //
(int) (*(ss - 1)->ch)[Moving(move)][To(move)] + //
(int) (*(ss - 2)->ch)[Moving(move)][To(move)] + //
(int) (*(ss - 4)->ch)[Moving(move)][To(move)];
(int) (*(ss - 2)->ch)[Moving(move)][To(move)];
}

INLINE int GetCaptureHistory(ThreadData* thread, Move move) {
Expand Down

0 comments on commit da90179

Please sign in to comment.