maximum-matching
Version:
Implementation of Blossom's Algorithm for Maximum Matching
9 lines (8 loc) • 399 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlossomPathDirection = void 0;
var BlossomPathDirection;
(function (BlossomPathDirection) {
BlossomPathDirection["CLOCK_WISE"] = "CLOCK_WISE";
BlossomPathDirection["COUNTER_CLOCK_WISE"] = "COUNTER_CLOCK_WISE";
})(BlossomPathDirection = exports.BlossomPathDirection || (exports.BlossomPathDirection = {}));