Package org.nlpub.watset.graph
Class ComponentsClustering<V,E>
java.lang.Object
org.nlpub.watset.graph.ComponentsClustering<V,E>
- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph
- All Implemented Interfaces:
org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
public class ComponentsClustering<V,E>
extends Object
implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
A trivial clustering algorithm that treats every connected component as a cluster.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionComponentsClustering
(org.jgrapht.Graph<V, E> graph) Set up the trivial clustering algorithm that treats every connected component as a cluster. -
Method Summary
Modifier and TypeMethodDescriptionstatic <V,
E> ComponentsClustering.Builder<V, E> builder()
Create a builder.org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
-
Field Details
-
inspector
The connectivity inspector.
-
-
Constructor Details
-
ComponentsClustering
Set up the trivial clustering algorithm that treats every connected component as a cluster.- Parameters:
graph
- the graph
-
-
Method Details
-
builder
Create a builder.- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph- Returns:
- a builder
-
getClustering
- Specified by:
getClustering
in interfaceorg.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
-