We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c9810b commit ac9c5b9Copy full SHA for ac9c5b9
manager/jskills/TSUpdate.java
@@ -42,7 +42,12 @@ else if (words[0].equals("P")) {
42
ranks.add(rank);
43
}
44
else if (words[0].equals("C")) {
45
- GameInfo gameinfo = GameInfo.getDefaultGameInfo();
+ //GameInfo gameinfo = GameInfo.getDefaultGameInfo();
46
+ GameInfo gameinfo = new GameInfo(50.0, // mu
47
+ 50.0/3.0, // sigma
48
+ 50.0/6.0, // beta
49
+ 50.0/300.0, // tau
50
+ 0.01); // draw probability
51
Map<IPlayer, Rating> results;
52
results = TrueSkillCalculator.calculateNewRatings(gameinfo,
53
teams, listToArray(ranks));
0 commit comments