checkRaiseSemiBluffEv
Estimate chip EV for a check-raise semi-bluff line.
checkRaiseSemiBluffEv(heroHoleCards: CardInput, boardCards: CardInput, villainRange: SparseRangeSpec | Float64Array, pot: number, betSize: number, raiseSize: number): number
See Packed card input and SparseRangeSpec where those inputs apply.
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
Use checkRaiseSemiBluffEv when you need to estimate chip EV for a check-raise semi-bluff line.
How to use
const poker = require('poker-calculations');
const range = new Float64Array(1326);
range.fill(1 / 1326);
const result = poker.checkRaiseSemiBluffEv(range, range, ['Qh', 'Jh', '2c'], 100, [33, 66, 100]);
console.log(result);