API

TexasHoldemModule
TexasHoldem

A no-limit Texas Holdem simulator.

Terminology

  • game a single "game", where players are dealt hands, winner(s) are declared once.
  • round a point or process in the game, including PreFlop, Flop, Turn, River.
  • round the process of each player deciding which actions to take, until no further actions are taking.
source

Game-level functions

TexasHoldem.move_buttons!Function
move_buttons!(table::Table)

Move the dealer, small blind, big blind, and first-to-act buttons to the next set of players.

This is an internal method.

source
TexasHoldem.play!Function
play!(game::Game[, sf::StartFrom])

Play a game.

Optionally, users can pass in a StartFrom option, to start from a game-point, specified by sf.

source

Chips

TexasHoldem.ChipsType
Chips(n, frac)

A stack of chips struct. This type is backed by Ints and performs exact arithmetic operations by using Rational numbers to track remainders (fractions of a chip). frac is always internally stored as less than 1.

Players can only bet/call with whole chips (n), and are not allowed to bet/call with a fraction of a chip.

We track the fractions of chips so that we can assert exact money conservation on the table until a player busts, at which point, that money is lost.

source

Player type and methods

TexasHoldem.HumanType
Human

A human (terminal input) strategy. Use this strategy if you want to play "live" games, and not for simulating games.

source
TexasHoldem.Bot5050Type
Bot5050

Bot5050 is a stochastic strategy that chooses all of its actions based on a coin flip.

This bot is used for quick-start game configurations for users.

source
TexasHoldem.PlayerType
Player

Contains the poker player information:

  • strategy
  • cards
  • bank roll
  • pot investment

TODO: some of these fields should be removed, since they're only needed for flow control logic.

source
TexasHoldem.bank_rollFunction
bank_roll(::Player)

The player's instantaneous bank roll.

We access the Int in Chips as the fractional chips are only handled by the TransactionManager.

source
TexasHoldem.round_bank_rollFunction
round_bank_roll(::Player)

The player's bank roll at the beginning of the round

We access the Int in Chips as the fractional chips are only handled by the TransactionManager.

source

Player actions

TexasHoldem.CallFunction
Call(amt::Int)
Call(table::Table, player::Player)

The call action, should be returned from player_option. when a player wants to call amount amt.

Use call_amount to query how much is needed to call.

source
TexasHoldem.AllInFunction
AllIn(amt::Int)
AllIn(table::Table, player::Player)

The all-in action, should be returned from player_option. when a player wants to raise all in (to amount amt).

Users may call this via AllIn(last(valid_raise_range(table, player))) or use the convenience function AllIn(table, player).

See valid_raise_range for querying the valid range that they are allowed to raise.

source
TexasHoldem.valid_raise_rangeFunction
valid_raise_range(table::Table, player::Player)

A UnitRange{Int} of valid raises. Note that sometimes the range's starting and ending values are the same when, for example, all-in is the only available option.

source

Player options

TexasHoldem.player_optionFunction
player_option(game::Game, player::Player, option::AbstractPlayerOptions)

Returns a valid action (see Action), given the allowable option. TexasHoldem calls player_option for each player on the table during each round. This function is entirely where the strategy logic resides.

Users may overload this method to develop their own poker bots. The option type is one of

source

Training

There are additional functionalities added for training purposes

TexasHoldem.recreate_gameFunction
recreate_game(game, player)

Creates an exact (deep)copy of the input game, and then re-samples the unobserved cards (i.e., the opponent cards and unobserved table cards).

This is useful for repeatedly sampling a specific scenario so that we can compute the expected value of a particular action.

TODO: we could make a mutating, in-place version of this to reduce allocations.

source