kubn cfr:0

This commit is contained in:
2025-11-28 17:19:59 +08:00
commit 547118ec6d
12 changed files with 223 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
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()