Examples of BucketRollOut


Examples of org.cspoker.ai.bots.bot.gametree.rollout.BucketRollOut

  public final int stackSize;
 
  public MCTSBucketShowdownNode(GameState gameState, InnerNode parent, ProbabilityAction probAction, OpponentModel model) {
    super(parent, probAction);
    this.rollout = new BucketRollOut(gameState,parent.bot,model);
    this.stackSize = rollout.botState.getStack();
  }
View Full Code Here

Examples of org.cspoker.ai.bots.bot.gametree.rollout.BucketRollOut

  ShowdownBucketRolloutNode(PlayerId botId, GameState gameState, OpponentModel model, int tokens, NodeVisitor... nodeVisitors) {
    this.gameState = gameState;
//    this.nodeVisitors = nodeVisitors;
    this.nbTokens = tokens;
    this.rollout = new BucketRollOut(gameState,botId,model);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.