UNPKG

maximum-matching

Version:

Implementation of Blossom's Algorithm for Maximum Matching

4 lines (3 loc) 195 B
import { AugmentingPath } from '../AugmentingPath'; import { MatchingGraph } from './MatchingGraph'; export declare function findAugmentingPath(graph: MatchingGraph): AugmentingPath | undefined;