Package com.gengoai.graph.clustering
Interface Clusterer<V>
-
- Type Parameters:
V
- the vertex type
- All Known Implementing Classes:
ChineseWhispers
,ConnectedComponents
,StronglyConnectedComponents
public interface Clusterer<V>
Common interface for methods that cluster the vertices of a graph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Set<V>>
cluster(Graph<V> g)
Clusters the vertices of the given graph and returns a list of clusters (sets).
-