Return minimum weight vertex dominating set.
Parameters : | G : NetworkX graph
weight : None or string, optional (default = None)
|
---|---|
Returns : | min_weight_dominating_set : set
|
Notes
This algorithm computes an approximate minimum weighted dominating set for the graph G. The upper-bound on the size of the solution is log w(V) * OPT. Runtime of the algorithm is .
References
[R127] | Vazirani, Vijay Approximation Algorithms (2001) |