UNPKG

wenglin

Version:

Weng-Lin skill algorithm implementation

15 lines (12 loc) 169 B
'use strict'; const Z = 3; const MU = 25; const SIGMA = MU / Z; const BETA = SIGMA / 2; const EPSILON = 0.0001; module.exports = { MU, SIGMA, BETA, EPSILON };