Skip to content

Commit

Permalink
Increased max number of simulations
Browse files Browse the repository at this point in the history
  • Loading branch information
vaquierm committed Apr 25, 2019
1 parent 1735cd0 commit 40d441a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/student_player/Montecarlo/MCTS.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static long getMCTSBestMove(long timeout, List<Long> moves, PentagoBitBoa
// Expand the root node with the option moves
UCTRoot.expandNode(moves);

while (System.currentTimeMillis() - startTime < timeout && UCTRoot.getNumSims() < 150000) {
while (System.currentTimeMillis() - startTime < timeout && UCTRoot.getNumSims() < 500000) {

// Find a promising node to expand
UCTNode promissingNode = findPromisingNode();
Expand Down

0 comments on commit 40d441a

Please sign in to comment.