public FactorGraphTrueSkillCalculator()
     : base(SupportedOptions.PartialPlay | SupportedOptions.PartialUpdate, TeamsRange.AtLeast(2), PlayersRange.AtLeast(1))
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Default construction.
 /// </summary>
 /// <param name="twoPlayerEloCalculator">The two player calculator to base this off.</param>
 public DuellingEloCalculator(TwoPlayerEloCalculator twoPlayerEloCalculator)
     : base(SupportedOptions.None, TeamsRange.AtLeast(2), PlayersRange.AtLeast(1))
 {
     mTwoPlayerEloCalculator = twoPlayerEloCalculator;
 }