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
When two players in heads-up minraising eachother, a sequence of total betsizes with 10/25 blinds: 10-25-60-110-etc come up. Should be 10-25-50-75-100-etc.
You are calculating the minraise as max(self._bigblind, self._lastraise + self._tocall) which yields us the total size of the bet with all previous bet sizes accounted for. No need to add our current bet.
The text was updated successfully, but these errors were encountered:
When two players in heads-up minraising eachother, a sequence of total betsizes with 10/25 blinds: 10-25-60-110-etc come up. Should be 10-25-50-75-100-etc.
In env.py line 207
Should be
You are calculating the minraise as
max(self._bigblind, self._lastraise + self._tocall)
which yields us the total size of the bet with all previous bet sizes accounted for. No need to add our current bet.The text was updated successfully, but these errors were encountered: