fixes for monte carlo ai

This commit is contained in:
BetaSteward 2012-02-13 09:05:01 -05:00
parent 10eb7955eb
commit 48f5a469d4
33 changed files with 196 additions and 49 deletions

View file

@ -60,7 +60,7 @@ public class ComputerPlayerMCTS extends ComputerPlayer<ComputerPlayerMCTS> imple
private static final int THINK_MIN_RATIO = 40;
private static final int THINK_MAX_RATIO = 100;
private static final double THINK_TIME_MULTIPLIER = 2.0;
private static final boolean USE_MULTIPLE_THREADS = false;
private static final boolean USE_MULTIPLE_THREADS = true;
protected transient MCTSNode root;
protected int maxThinkTime;