Skip to content

Commit

Permalink
Fix sorting of depot move generators
Browse files Browse the repository at this point in the history
  • Loading branch information
acco93 committed Nov 16, 2024
1 parent 45c3927 commit dea3043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion movegen/MoveGenerators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ namespace cobra {
}
void on_build_completed(MoveGenerators& moves) override {

for (auto i = instance.get_customers_begin(); i < instance.get_customers_end(); i++) {
for (auto i = instance.get_vertices_begin(); i < instance.get_vertices_end(); i++) {

auto& indices = all_move_generator_indices_involving[i];

Expand Down

0 comments on commit dea3043

Please sign in to comment.