diff --git a/src/preflop_holdem.py b/src/preflop_holdem.py index 404be36..ee6ac0f 100644 --- a/src/preflop_holdem.py +++ b/src/preflop_holdem.py @@ -94,7 +94,7 @@ def actions(self): - k ("check") - bMIN ("bet pot") - bMID ("bet 2x pot size") - - bMAX ("bet 4x pot size") + - bMAX ("all-in") - c ("call") - f ("fold") @@ -201,9 +201,8 @@ def _get_total_pot_size(self, history): stage_total = latest_bet + 2 * stage_total # bet 2x pot latest_bet = 2 * old_stage_total elif action == "bMAX": - old_stage_total = stage_total - stage_total = latest_bet + 4 * stage_total # bet all in - latest_bet = 4 * old_stage_total + stage_total = latest_bet + 100 # bet all in + latest_bet = 100 elif action == "c": stage_total = 2 * latest_bet # call diff --git a/src/preflop_infoSets_batch_19.joblib b/src/preflop_infoSets_batch_19.joblib index 22947ea..93a8366 100644 Binary files a/src/preflop_infoSets_batch_19.joblib and b/src/preflop_infoSets_batch_19.joblib differ