I am thinking about using this method (Monte Carlo Tree Search) for this game Entropy.
But I am stuck at the point that MCTS will let you create a child node from a move that you can play. But if you play as Chaos, you will have to put the piece into an empty place on the board but the color of the piece is random. So how can I modify MCTS to make the algorithm still work?
(Also if anyone has any other idea to play the game, please suggest, thank you)
I already tried creating a child node with only the place I will put it in and the color of the piece is entirely random but that misses a lot of case so I don't think that this would work.