Package org.cspoker.ai.bots.bot.gametree.search.expander

Examples of org.cspoker.ai.bots.bot.gametree.search.expander.Expander


    return config;
  }

  protected void expandChildren(){
    if(children == null){
      Expander expander = new Expander(gameState, config.getModel(), gameState.getNextToAct(), bot, config.getSampler());
      List<ProbabilityAction> actions = expander.getProbabilityActions();
      ImmutableList.Builder<INode> childrenBuilder = ImmutableList.builder();
      probabilities = new double[actions.size()];
      cumulativeProbability = new double[actions.size()];
      double cumul = 0;
      for (int i=0;i<actions.size();i++) {
View Full Code Here

TOP

Related Classes of org.cspoker.ai.bots.bot.gametree.search.expander.Expander

Copyright © 2018 www.massapicom. 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.