breakevenFoldEquityPureBluffWithAnte
Pure-bluff fold equity with ante in won pot.
breakevenFoldEquityPureBluffWithAnte(potBeforeHeroBet: number, heroBetOrCallSize: number, anteToPost: 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
Pure-bluff fold equity when hero still posts an ante into the won pot.
How to use
const pot = 100;
const bet = 50;
const ante = 5;
const fe = poker.breakevenFoldEquityPureBluffWithAnte(pot, bet, ante);
const fe0 = poker.breakevenFoldEquityPureBluff(pot, bet);
console.log({ fe, fe0 });