def __init__(self, id, cards, nrCards):
     Player.__init__(self, id, cards)
     self.beliefs = np.ones(nrCards) / nrCards
     self.currentCards = np.zeros(nrCards)
     self.initNFQ()
Example #2
0
 def __init__(self, id, cards):
     Player.__init__(self, id, cards)
Example #3
0
 def __init__(self, id, cards, nrCards):
     Player.__init__(self, id, cards)
     self.beliefs = np.ones(nrCards)/nrCards
     self.currentCards = np.zeros(nrCards)
     self.initNFQ()
Example #4
0
 def __init__(self):
     Player.__init__(self)
Example #5
0
 def __init__(self,id, cards):
     Player.__init__(self,id,cards)
Example #6
0
 def __init__(self):
     Player.__init__(self)
     self.get = 0