You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement Kuhn poker and create pull request.
The documentation says that I have to inherit from classes in rlcard/core.py.
However, Leduc poker is implemented by inheriting from limit poker classes. It looks like the limit poker classes are the base class for other games.
I want to implement kuhn poker for an arbitrary number of players, but it seems the limit poker implementation only supports 2 players.
How to do it better?
The text was updated successfully, but these errors were encountered:
@cfytrok I think both will work. We implemented Leduc poker by inheriting from limit poker classes because those pokers have similar rules. Inheriting limit poker classes saves efforts.
I want to implement Kuhn poker and create pull request.
The documentation says that I have to inherit from classes in rlcard/core.py.
However, Leduc poker is implemented by inheriting from limit poker classes. It looks like the limit poker classes are the base class for other games.
I want to implement kuhn poker for an arbitrary number of players, but it seems the limit poker implementation only supports 2 players.
How to do it better?
The text was updated successfully, but these errors were encountered: