Skip to main content

exploitativeCallThresholdAdjustment

Adjust a call threshold from bluff bias and aggression.

exploitativeCallThresholdAdjustment(baseThreshold: number, bluffBias: number, aggression: 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 exploitativeCallThresholdAdjustment when you need to adjust a call threshold from bluff bias and aggression.

How to use

const poker = require('poker-calculations');
const result = poker.exploitativeCallThresholdAdjustment(1, 1, 7, 5);
console.log(result);

See also

bayesianRangeUpdateFromAction · NativeOpponentModel