Returns the minimum maximal matching of G. That is, out of all maximal matchings of the graph G, the smallest is returned.
Parameters : | G : NetworkX graph
|
---|---|
Returns : | min_maximal_matching : set
|
Notes
The algorithm computes an approximate solution fo the minimum maximal cardinality matching problem. The solution is no more than 2 * OPT in size. Runtime is .
References
[R129] | Vazirani, Vijay Approximation Algorithms (2001) |