nttb-support
Version:
A repository containing javascript functions to support NTTB application development
119 lines (118 loc) • 4.52 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoundRobinPool_12_Players = exports.RoundRobinPool_11_Players = exports.RoundRobinPool_10_Players = exports.RoundRobinPool_9_Players = exports.RoundRobinPool_8_Players = exports.RoundRobinPool_7_Players = exports.RoundRobinPool_6_Players = exports.RoundRobinPool_5_Players = exports.RoundRobinPool_4_Players = exports.RoundRobinPool_3_Players = void 0;
var match_1 = require("./match");
// Short hand to create a new Match
function M(home, away) {
return new match_1.Match(home, away);
}
exports.RoundRobinPool_3_Players = {
matches: [
[],
[],
[],
]
};
exports.RoundRobinPool_4_Players = {
matches: [
[],
[],
[],
]
};
exports.RoundRobinPool_5_Players = {
matches: [
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_6_Players = {
matches: [
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_7_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_8_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_9_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_10_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
[],
[],
]
};
exports.RoundRobinPool_11_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
],
};
exports.RoundRobinPool_12_Players = {
matches: [
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
]
};