unnecessary prints
This commit is contained in:
parent
881c609f74
commit
91e6af8998
1 changed files with 2 additions and 6 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue