I am currently working on a 2-game card game with a stunt and pattern similar to 66 or Schnapsen. Basically you need to collect points by winning tricks, and although there are cards in the pack, both players draw a card after each round.
I am at the point of programming a good AI for a game that does not fool, but really calculates the best moves, using only the information available in this state of the game. I was stuck deciding which algorithm or logic would be best used. I decided against algorithms such as Alpha-Beta pruning, because there is too much hidden information especially at the beginning of the game. I read a lot of interesting things about searching in Monte Carlo and corresponding searching in UCT, but since there are stochastic elements in the game, the tree that needed to be searched would increase in a short period.
Which algorithm or approach is best to use?
source share