tournament-organizer
    Preparing search index...

    Interface StandingsValues

    Properties of standings

    interface StandingsValues {
        gamePoints: number;
        games: number;
        matches: number;
        matchPoints: number;
        player: Player;
        tiebreaks: {
            cumulative: number;
            earnedGameLosses: number;
            earnedGameWins: number;
            earnedMatchLosses: number;
            earnedMatchWins: number;
            gameWinDifferential: number;
            gameWinPct: number;
            koyaSystem: number;
            matchWinPct: number;
            medianBuchholz: number;
            neighborhoodRecord: number;
            oppCumulative: number;
            oppGameWinPct: number;
            oppMatchWinPct: number;
            oppOppMatchWinPct: number;
            solkoff: number;
            sonnebornBerger: number;
        };
    }
    Index

    Properties

    gamePoints: number

    Number of points earned based on games.

    games: number

    Number of games played.

    matches: number

    Number of matches played.

    matchPoints: number

    Number of points earned based on matches.

    player: Player

    The player represented by the values.

    tiebreaks: {
        cumulative: number;
        earnedGameLosses: number;
        earnedGameWins: number;
        earnedMatchLosses: number;
        earnedMatchWins: number;
        gameWinDifferential: number;
        gameWinPct: number;
        koyaSystem: number;
        matchWinPct: number;
        medianBuchholz: number;
        neighborhoodRecord: number;
        oppCumulative: number;
        oppGameWinPct: number;
        oppMatchWinPct: number;
        oppOppMatchWinPct: number;
        solkoff: number;
        sonnebornBerger: number;
    }

    Values for all tiebreakers.

    Type Declaration

    • cumulative: number

      A player's cumulative score.

    • earnedGameLosses: number

      A player's number of earned game losses.

    • earnedGameWins: number

      A player's number of earned game wins.

    • earnedMatchLosses: number

      A player's number of earned match losses.

    • earnedMatchWins: number

      A player's number of earned match wins.

    • gameWinDifferential: number

      A player's difference between earned game wins and earned game losses.

    • gameWinPct: number

      A player's game win percentage.

    • koyaSystem: number

      A player's Koya system score.

    • matchWinPct: number

      A player's match win percentage.

    • medianBuchholz: number

      A player's Median-Buchholz (or Harkness) score.

    • neighborhoodRecord: number

      A player's record versus players with the same number of match points.

    • oppCumulative: number

      A player's cumulative opponent's score.

    • oppGameWinPct: number

      A player's opponent's game win percentage.

    • oppMatchWinPct: number

      A player's opponent's match win percentage.

    • oppOppMatchWinPct: number

      A player's opponent's opponent's match win percentage.

    • solkoff: number

      A player's Solkoff (or Buchholz) score.

    • sonnebornBerger: number

      A player's Sonneborn-Berger score.