Skip to content

Commit 21a4c1d

Browse files
committed
Ups the number of moves explored by the AI to 20,000.
1 parent 9a639d7 commit 21a4c1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chrome_app/htmf_module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void HtmfInstance::HandleMessage(const pp::Var& var_message) {
144144
while (state.cur_player_idx == 1) {
145145
// Now the AI must move.
146146
move_t ai_move;
147-
uct_move(10000, state, &ai_move);
147+
uct_move(20000, state, &ai_move);
148148
make_move(ai_move, &state);
149149

150150
PostMessage(pp::Var(toJSON(state, err)));

0 commit comments

Comments
 (0)