Any good card game AI strategies?

2019-01-30 12:11发布

What would be strategies for writing a good computer opponent for a card game? Most card games are games of incomplete information, so simply mapping out and traversing the game tree as one could do with a board game does not seem too promising.

Maybe one could track what open cards are in the game (as soon as they are revealed) and assign probabilities to certain events (e.g. opponent still has 2 cards of clubs).

Does anyone have experience with this? Links and directions greatly appreciated.

8条回答
等我变得足够好
2楼-- · 2019-01-30 12:41

The University of Alberta has a Poker-playing program named Polaris that competes against professionals in tournaments. Their web site has a lot of information.

查看更多
迷人小祖宗
3楼-- · 2019-01-30 12:42

use common sense: let the computer play by the same rules a human would (logic), and change difficulty level by changing parameters such as quality of AI memory.

I implemented a memory game which is maybe a simple case compared to what you are looking for, but it worked pretty well.

查看更多
登录 后发表回答