From 5b9d89430999a7ac5b43e0ef1397c7c6121bed77 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Tue, 19 Dec 2017 14:16:12 -0500 Subject: [PATCH] Comment out another debug statement. Change back to default Tau value. --- xonstat/glicko.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xonstat/glicko.py b/xonstat/glicko.py index 9f63675..8ed5722 100644 --- a/xonstat/glicko.py +++ b/xonstat/glicko.py @@ -18,8 +18,7 @@ PHI = 350 SIGMA = 0.06 # the default system volatility constant -#TAU = 0.3 -TAU = 0.5 +TAU = 0.3 # the ratio to convert from/to glicko2 GLICKO2_SCALE = 173.7178 @@ -112,7 +111,8 @@ def calc_sigma_bar(sigma, delta, phi, v, tau=TAU): B, fb = C, fc - log.debug("A={}, B={}, C={}, fA={}, fB={}, fC={}".format(A, B, C, fa, fb, fc)) + # DEBUG + # log.debug("A={}, B={}, C={}, fA={}, fB={}, fC={}".format(A, B, C, fa, fb, fc)) return math.e ** (A / 2) -- 2.39.2