mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00: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
|
|||
|
}
|
|||
|
}
|