namespace Moserware.Skills { /// /// Represents a comparison between two players. /// /// /// The actual values for the enum were chosen so that the also correspond to the multiplier for updates to means. /// public enum PairwiseComparison { Win = 1, Draw = 0, Lose = -1 } }