I have a python app I will be writing soon that requires the expectiminimax algorithm because an element of the game uses a dice roll. I could either write a quick version or I could try to integrate it into the easyAI framework as another AI algorithm choice.
Obviously, it will not be perfect integration as it will require a different result for getting possible moves. Perhaps a method called 'expected_possible_moves' which returns a list of tuples that include probability.
I have a python app I will be writing soon that requires the expectiminimax algorithm because an element of the game uses a dice roll. I could either write a quick version or I could try to integrate it into the easyAI framework as another AI algorithm choice.
Obviously, it will not be perfect integration as it will require a different result for getting possible moves. Perhaps a method called 'expected_possible_moves' which returns a list of tuples that include probability.
Thoughts on the matter?