diff options
| author | vainsocial <vainsocial@prod> | 2017-12-22 12:37:55 +0000 |
|---|---|---|
| committer | vainsocial <vainsocial@prod> | 2017-12-22 12:37:55 +0000 |
| commit | 79bd472660a4af96f772d0dff77e8afa1bbac3f4 (patch) | |
| tree | 0cdd26f875a5ca17a10929302405198a68c74ae0 | |
| parent | 1af5d1aa18282e65bf3d6ab4ba88c3c6677dbff8 (diff) | |
| download | analyzer-79bd472660a4af96f772d0dff77e8afa1bbac3f4.tar.gz analyzer-79bd472660a4af96f772d0dff77e8afa1bbac3f4.zip | |
fix wrong reference to rank points ranked
| -rw-r--r-- | worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -260,7 +260,7 @@ def process(): # approximate by rank points if possible if player.rank_points_ranked is not None: sigma = UNKNOWN_PLAYER_SIGMA * (2.0/3.0) # more accurate = more trust - mu = participant.rank_points_ranked + sigma + mu = float(player.rank_points_ranked) + sigma else: # approximate rank points by skill tier sigma = UNKNOWN_PLAYER_SIGMA |
