There are several different algorithms for calculate matchings in graphs. The matching problems in bipartite graphs are generally easier than in general graphs. The goal of the matching optimization can be finding maximum cardinality, maximum weight or minimum cost matching. The search can be constrained to find perfect or maximum cardinality matching.
The matching algorithms implemented in LEMON:
Classes | |
class | MaxFractionalMatching< GR, TR > |
Max cardinality fractional matching. More... | |
class | MaxWeightedFractionalMatching< GR, WM > |
Weighted fractional matching in general graphs. More... | |
class | MaxWeightedPerfectFractionalMatching< GR, WM > |
Weighted fractional perfect matching in general graphs. More... | |
class | MaxMatching< GR > |
Maximum cardinality matching in general graphs. More... | |
class | MaxWeightedMatching< GR, WM > |
Weighted matching in general graphs. More... | |
class | MaxWeightedPerfectMatching< GR, WM > |
Weighted perfect matching in general graphs. More... | |
Files | |
file | fractional_matching.h |
Fractional matching algorithms in general graphs. | |
file | matching.h |
Maximum matching algorithms in general graphs. |