Package com.gengoai.graph.clustering
Class StronglyConnectedComponents<V>
- java.lang.Object
-
- com.gengoai.graph.clustering.StronglyConnectedComponents<V>
-
- Type Parameters:
V
- the vertex type
- All Implemented Interfaces:
Clusterer<V>
,Serializable
public class StronglyConnectedComponents<V> extends Object implements Clusterer<V>, Serializable
Implementation of Strongly Connected components.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StronglyConnectedComponents()
-
Method Summary
All Methods Instance Methods Concrete 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).
-