Skip to content

Commit

Permalink
Use conthist for move ordering
Browse files Browse the repository at this point in the history
Bench: 10222659
  • Loading branch information
SzilBalazs committed Sep 10, 2023
1 parent f4979b9 commit c28766d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/move_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ namespace search {
} else if (move == history.counter_moves[last_move.get_from()][last_move.get_to()]) {
return MOVE_SCORE_COUNTER;
} else {
return history.butterfly[move.get_from()][move.get_to()];
return history.get_history(move, ss);
}
}
};
Expand Down

0 comments on commit c28766d

Please sign in to comment.