Examples of InfoSetPair


Examples of stage3.InfoSet.InfoSetPair

  public ContinueItem ciCall;
 
  public EndRoundChoiceNode(ContinueItem ciToFill, int infoType) {
    super(ciToFill, new HashSet());
   
    InfoSetPair ispThisNode = ciToFill.ispChild;
   
    // we now must create two outcomes corresponding to the player's 2 choices
   
    // Choice 1: Fold
    InfoSetPair ispFold = ispThisNode.addInfoToBoth(
        new InfoToken(infoType, InfoToken.s_fold));
    gtnFold = new TerminalLeafNode(new ContinueItem(ispFold, this));

    // Choice 2: Call
    ciCall = new ContinueItem(
View Full Code Here

Examples of stage3.InfoSet.InfoSetPair

            [DoGT.s_bc0][DoGT.s_player1], i);
       
        InfoToken iP2 = new InfoToken(InfoToken.s_holeCardsCluster
            [DoGT.s_bc0][DoGT.s_player2], j);
       
        InfoSetPair ispNew = isp.addInfoToOnePlayer(iP1, DoGT.s_player1)
            .addInfoToOnePlayer(iP2, DoGT.s_player2);
       
        ciNext.add(new ContinueItem(ispNew, this));
      }
    }
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.