14 lines
233 B
Python
14 lines
233 B
Python
from src.game.kuhn_poker import KuhnPoker
|
|
from src.cfr.info_set import InfoSet
|
|
|
|
|
|
def main():
|
|
game = KuhnPoker()
|
|
|
|
info_set = InfoSet(act_cnt=2)
|
|
strategy = info_set.get_strat(.0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|