somehow 300 is better than 200

This commit is contained in:
Mylloon 2023-03-31 16:56:25 +02:00
parent b79d8a074c
commit 715f24e01d
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -288,7 +288,7 @@ bt_move_t bt_t::get_mcts_move(double max_time) {
mcts_expansion(tree);
// MCTS
for (int it = 0; it < 200; ++it) {
for (int it = 0; it < 300; ++it) {
// Copy board
bt_t copy_b = *this;