mirror of
https://github.com/furyfire/trueskill.git
synced 2025-10-27 14:42:28 +01:00
15 lines
379 B
C#
15 lines
379 B
C#
|
|
namespace Moserware.Skills
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Represents a comparison between two players.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>
|
|||
|
|
/// The actual values for the enum were chosen so that the also correspond to the multiplier for updates to means.
|
|||
|
|
/// </remarks>
|
|||
|
|
public enum PairwiseComparison
|
|||
|
|
{
|
|||
|
|
Win = 1,
|
|||
|
|
Draw = 0,
|
|||
|
|
Lose = -1
|
|||
|
|
}
|
|||
|
|
}
|