From a40a4037031a27a1e32eb921582b9fce7ce79ac5 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 29 Mar 2023 20:34:23 +0200 Subject: [PATCH] explicit type --- TP2/src/mybt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);