Maximum-weight matching
Revision as of 10:16, 21 November 2014 by Weihe (talk | contribs) (Created page with "== Basic definitions == # Basic graph definitions # Matchings in graphs == Definition == '''Input:''' # An undirected graph <math>G=(V,E)</math>. # A '''weight''' <...")
Basic definitions
Definition
Input:
- An undirected graph [math]\displaystyle{ G=(V,E) }[/math].
- A weight [math]\displaystyle{ w(e) }[/math] for each edge [math]\displaystyle{ e\in E }[/math].
Output: A matching [math]\displaystyle{ M }[/math] in [math]\displaystyle{ G }[/math] such that [math]\displaystyle{ \sum_{e\in M'}w(e)\leq\sum_{e\in M}w(e) }[/math] for any other matching [math]\displaystyle{ M' }[/math] in [math]\displaystyle{ G }[/math].