Files
kubn-cfr/main.py
2025-11-28 17:19:59 +08:00

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()