holdem-simulator

Using Monte Carlo simulation to approximate the probability distribution for the outcome of a Texas hold'em game


Keywords
poker, texas, holdem, monte, carlo, simulation, probability, hand
License
MIT
Install
npm install holdem-simulator@0.0.1

Documentation

holdem-simulator

Using Monte Carlo simulation to approximate the probability distribution for the outcome of a Texas hold'em game.

npm version Build Status

Install

$ npm install holdem-simulator

Usage

The function accepts two arrays - the cards on hand and the cards on the table (if any). You can also specify the number of players (2 by default) and the sample size (10000 by default).

const hand = ['as', 'ac'];
const table = ['ad', '2d', '7s'];
const players = 2;

simulate(hand, table, players);
//=> [0.9544, 0.0456, 0]

The returned array represents the estimated probability distribution. The elements are the probabilities of winning the pot, losing the pot and splitting the pot, respectively.

License

MIT