@echecs/tournament - v2.1.1
    Preparing search index...

    Interface AccelerationMethod

    An acceleration method that adds virtual points to certain players' scores in early rounds, influencing the pairing system without affecting stored results or standings.

    interface AccelerationMethod {
        virtualPoints: (
            player: Player,
            round: number,
            totalRounds: number,
        ) => number;
    }
    Index

    Properties

    Properties

    virtualPoints: (player: Player, round: number, totalRounds: number) => number

    Returns the number of virtual points for a player in a given round.