Skip to main content

blockerAwareBluffFrequency

Allocate bluff frequency across candidates using blocker scores.

blockerAwareBluffFrequency(valueCombos: number, bluffCandidates: F64VectorInput, targetAlpha: number): Float64Array

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 blockerAwareBluffFrequency when you need to allocate bluff frequency across candidates using blocker scores.

How to use

const poker = require('poker-calculations');
const range = new Float64Array(1326);
range.fill(1 / 1326);

const result = poker.blockerAwareBluffFrequency(range, range, ['Qh', 'Jh', '2c'], 100, [33, 66, 100]);
console.log(result);

See also

betAsPotFraction · expectedValueRaise