Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementing a stochastic game example(Backgammon) in games.py #705

Closed
AdityaDaflapurkar opened this issue Jan 31, 2018 · 3 comments
Closed

Comments

@AdityaDaflapurkar
Copy link
Contributor

The Expectiminimax algorithm from the chapter 'Adversarial Search'(section : stochastic games) is not implemented in games.py. Also, it is not added to the list of algorithms. Should I work on it's implementation?

@ad71
Copy link
Contributor

ad71 commented Feb 8, 2018

As far as I know, expectiminimax is not an algorithm. It is a (mathematical) function that "generalizes the minimax value for deterministic games to an expectiminimax value for stochastic games". It is something like a heuristic for stochastic games and (as far as I know) isn't used by the currently implemented algorithms in games.py
Correct me if I'm wrong.

@AdityaDaflapurkar
Copy link
Contributor Author

AdityaDaflapurkar commented Feb 8, 2018

Yes, you are right @ad71 . It is not an independent algorithm but just a variant of minimax for stochastic games. Currently there isn't any implementation for a stochastic game in games.py. Thus Expectiminimax is not used anywhere. @MrDupin , will it be good if I try implementing a stochastic game(Backgammon) in games.py? I will update this issue accordingly.

@antmarakis
Copy link
Collaborator

Sure, sounds good!

@AdityaDaflapurkar AdityaDaflapurkar changed the title Expectiminimax algorithm not implemented Implementing a stochastic game example(Backgammon) in games.py Feb 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants