Examples of OpponentModel


Examples of org.cspoker.ai.opponentmodels.OpponentModel

  public Bot createBot(final PlayerId botId, TableId tableId,
      SmartLobbyContext lobby, int buyIn, ExecutorService executor,
      BotListener... botListeners) {
    copies++;
    OpponentModel opponentModel = opponentModelFactory.create(botId);
    Config config = new Config(opponentModel, showdownNodeFactory,
        decisionNodeSelectionStrategy, opponentNodeSelectionStrategy,
        moveSelectionStrategy, backPropStratFactory, sampler);
    return new FixedSampleMCTSBot(botId, tableId, lobby, executor, buyIn,
        config,
View Full Code Here

Examples of org.cspoker.ai.opponentmodels.OpponentModel

  }

  public Bot createBot(final PlayerId botId, TableId tableId,
      SmartLobbyContext lobby, int buyIn, ExecutorService executor,
      BotListener... botListeners) {
    OpponentModel opponentModel = opponentModelFactory.create(botId);

    Config config = new Config(opponentModel, showdownNodeFactory,
        decisionNodeSelectionStrategy, opponentNodeSelectionStrategy,
        moveSelectionStrategy, backPropStratFactory, sampler);
    return new MCTSBot(botId, tableId, lobby, executor, buyIn,
View Full Code Here

Examples of org.cspoker.ai.opponentmodels.OpponentModel

  public synchronized Bot createBot(final PlayerId botId, TableId tableId,
      SmartLobbyContext lobby, int buyIn, ExecutorService executor,
      BotListener... botListeners) {
    copies++;

    OpponentModel opponentModel = opponentModels.get(botId);
    if(opponentModel==null){
      opponentModel = modelFactory.create(botId);
      opponentModels.put(botId, opponentModel);
    }
    SearchConfiguration config = new SearchConfiguration(opponentModel, showdownNodeFactory,
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.