Every hole, everyone's your rival — individual showdown by the strokes
Cut-Throat is an individual competition format designed for 3 or 4 players. Its logic is simple yet intense: you're not competing against a team — you're playing head-to-head against **every single player** on the course. Win against one, gain a point; lose to one, lose a point. This 1-vs-N mechanism makes every hole's settlement full of tension.
While the UI displays a clean row of numbers, the underlying CutThroatEngine executes complex pairwise round-robin comparisons:
This settlement method ensures total points across all players always balance out (Zero-sum Game) — a scientifically sound points system.
In 3 or 4 player Cut-Throat, each player's handicap often differs. Traditional one-to-many handicap calculations are unfair and hard to compute.
💡 REN GOLF Solution: We've implemented a **Pairwise Handicap** algorithm. When A compares with B, the A-B handicap difference applies; when A compares with C, it automatically switches to the A-C handicap difference. This makes fair competition possible.