explicit type

This commit is contained in:
Mylloon 2023-03-29 20:34:23 +02:00
parent 48c0bad191
commit a40a403703
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -275,7 +275,7 @@ bt_move_t bt_t::get_mcts_move(double max_time) {
bt_t copy_b = *this;
// Selection
auto selected = copy_b.mcts_selection(tree);
bt_node_t *selected = copy_b.mcts_selection(tree);
// Expansion
copy_b.mcts_expansion(selected);