diff --git a/TP2/src/mybt.cpp b/TP2/src/mybt.cpp index 692e56a..d682621 100644 --- a/TP2/src/mybt.cpp +++ b/TP2/src/mybt.cpp @@ -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);