- Type Parameters:
V
- the graph vertex type
- All Known Implementing Classes:
GirvanNewmanClustering
,KSpanningTreeClustering
,LabelPropagationClustering
public interface ClusteringAlgorithm<V>
An algorithm which computes a graph vertex clustering.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ClusteringAlgorithm.Clustering<V>
A clustering.static class
ClusteringAlgorithm.ClusteringImpl<V>
Default implementation of the clustering interface. -
Method Summary
Modifier and Type Method Description ClusteringAlgorithm.Clustering<V>
getClustering()
Computes a clustering.
-
Method Details
-
getClustering
ClusteringAlgorithm.Clustering<V> getClustering()Computes a clustering.- Returns:
- a clustering
-