riverValueBetThreshold
Estimate the equity threshold for river value betting.
riverValueBetThreshold(pot: number, betSize: number, villainCallRangeShare: 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
Use riverValueBetThreshold when you need to estimate the equity threshold for river value betting.
How to use
const poker = require('poker-calculations');
const range = new Float64Array(1326);
range.fill(1 / 1326);
const result = poker.riverValueBetThreshold(range, range, ['Qh', 'Jh', '2c'], 100, [33, 66, 100]);
console.log(result);