Interface DendogramCommunityDetectionAlgorithm<U>
- Type Parameters:
U
- Type of the users.
- All Known Implementing Classes:
AbstractFastGreedy
,AlternativeGiniFastGreedy
,FastGreedy
,GiniWeightedFastGreedy
,GirvanNewman
,SizeWeightedFastGreedy
public interface DendogramCommunityDetectionAlgorithm<U>
Algorithm for detecting the dendogram of communities in a graph.
-
Method Summary
Modifier and Type Method Description Dendogram<U>
detectCommunityDendogram(Graph<U> graph)
Computes the community dendogram for a certain graph.
-
Method Details
-
detectCommunityDendogram
Computes the community dendogram for a certain graph.- Parameters:
graph
- The full graph.- Returns:
- The dendogram if everything went OK, null if not.
-