- Type Parameters:
- V- vertex the graph vertex type
- All Known Implementing Classes:
- ChordalGraphIndependentSetFinder
public interface IndependentSetAlgorithm<V>
Algorithm to compute an
 Independent Set in a graph.
- Author:
- Joris Kinable
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceIndependentSetAlgorithm.IndependentSet<V>A (weighted) Independent Setstatic classIndependentSetAlgorithm.IndependentSetImpl<V>Default implementation of a (weighted) independent set
- 
Method SummaryModifier and Type Method Description IndependentSetAlgorithm.IndependentSet<V>getIndependentSet()Computes an independent set; all vertices are considered to have equal weight.
- 
Method Details- 
getIndependentSetIndependentSetAlgorithm.IndependentSet<V> getIndependentSet()Computes an independent set; all vertices are considered to have equal weight.- Returns:
- a vertex independent set
 
 
-