Package org.jgrapht.alg.interfaces
Interface ClusteringAlgorithm<V>
-
- Type Parameters:
V
- the graph vertex type
- All Known Implementing Classes:
KSpanningTreeClustering
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusteringAlgorithm.Clustering<V>
getClustering()
Computes a clustering.
-
-
-
Method Detail
-
getClustering
ClusteringAlgorithm.Clustering<V> getClustering()
Computes a clustering.- Returns:
- a clustering
-
-