Added
-
Post bet support.
-
Post bets are a type of forced bet which a player who just seated must pay to play right away instead of waiting for the button to pass.
-
To denote a post bet, it must be passed alongside
raw_blinds_or_straddles
variable during state construction.- For example, say UTG+1 wants to put a post-bet in a 6-max game. Then,
[1, 2, 0, -2, 0, 0]
or, equivalently,{0: 1, 1: 2, 3: -2}
.
- For example, say UTG+1 wants to put a post-bet in a 6-max game. Then,
-
-
pokerkit.notation.HandHistory.state_actions
is a new alias forpokerkit.notation.HandHistory.iter_state_actions()
.
Deprecated
pokerkit.notation.HandHistory.iter_state_actions()
due to poor naming. It is superceded bypokerkit.notation.HandHistory.state_actions
which behaves identically. This method will be removed in PokerKit Version 0.6.