Skip to main content

potSizeAfterHuCall

Pot after heads-up call: pot+2×call.

potSizeAfterHuCall(potBeforeCall: number, toCall: number): number

Import

const poker = require('poker-calculations');

ESM (Node):

import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');

When to use

Chip pot after a heads-up call: potBefore + 2×toCall. Same total used inside sprAfterCall.

How to use

const potBeforeCall = 80;
const toCall = 40;

const newPot = poker.potSizeAfterHuCall(potBeforeCall, toCall);
console.log(newPot); // 160

See also

spr-after-call · pot-odds-ratio