gramoloss
Version:
Graph theory package for edition and computation
10 lines (9 loc) • 355 B
JavaScript
;
// fvsn( Un ) = floor(n/3)
Object.defineProperty(exports, "__esModule", { value: true });
const graph_1 = require("../graph");
for (let n = 2; n <= 9; n++) {
console.log(`U${n}`, graph_1.Graph.UGtournament(n, 1).fvsn(), Math.floor(n / 3));
}
console.log(graph_1.Graph.Paley(3).fvsn(), 1);
console.log(graph_1.Graph.Paley(11).fvsn(), 7);