unnecessary prints

This commit is contained in:
Mylloon 2023-03-29 18:05:20 +02:00
parent 881c609f74
commit 91e6af8998
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -254,20 +254,16 @@ bt_move_t bt_t::get_mcts_move(double max_time) {
// MCTS
while (elapsed.count() < max_time) {
// Selection
auto xd = b_copy.mcts_selection(tree);
std::cerr << "selection\n";
auto selected = b_copy.mcts_selection(tree);
// Expansion
// mcts_expansion(selected);
std::cerr << "expansion\n";
b_copy.mcts_expansion(selected);
// Simulation
// bool is_win = mcts_simulation(selected);
std::cerr << "simulation\n";
// Update
// mcts_back_propagation(selected, is_win);
std::cerr << "update\n";
// Time constraint
elapsed = std::chrono::steady_clock::now() - now;