I'm developing an AI for 2048, and am about to apply minimax algorithm.
However, the search tree of 2048 is actually like a Expectiminimax tree without Min role. I wonder if I don't have Min role, how could I apply alpha-beta pruning in practice?
If I shouldn't apply alpha-beta pruning in this scenario, how could I reduce the useless search branch?
Any thoughts would be appreciate. Thank you.