예제 #1
0
 public void Setup()
 {
     _deck = new Deck(GameCards.Cards);
     _deck.Shuffle();
     _myHand = _deck.GetCards(6);
     _game   = new Game(Game.Player.Ai);
     _mt     = new MonteCarloTree(_myHand, _game);
 }
예제 #2
0
 //Constructor for the class
 public MonteCarloTreeSearch()
 {
     _tree = new MonteCarloTree();
 }