RobKohr/glicko

Error in calculating B in step 5.2

BHare1985 opened this issue · 2 comments

In glicko.js line 139 (step 5.2) you have:

var B = ln(pow(delta,2) - pow(p.rd2,2) , v);

which should be

var B = ln(pow(delta,2) - pow(p.rd2,2) - v);

Resolved with the commit - thanks!

You are welcome ;-)

2012/9/23 RobKohr notifications@github.com

Resolved with the commit - thanks!


Reply to this email directly or view it on GitHubhttps://github.com//issues/3#issuecomment-8801190.