Package dev.nm.graph.community
Interface GirvanNewman.EdgeBetweenessCtor<V>
-
- Type Parameters:
V
- vertex type
- Enclosing class:
- GirvanNewman<V,E extends UndirectedEdge<V>,G extends UnDiGraph<V,E>>
public static interface GirvanNewman.EdgeBetweenessCtor<V>
This allows customization of the computation of edge-betweeness.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdgeBetweeness<V>
getEdgeBetweeness(UnDiGraph<V,? extends UndirectedEdge<V>> g)
Construct an EdgeBetweeness from an undirected graph.
-
-
-
Method Detail
-
getEdgeBetweeness
EdgeBetweeness<V> getEdgeBetweeness(UnDiGraph<V,? extends UndirectedEdge<V>> g)
Construct an EdgeBetweeness from an undirected graph.- Parameters:
g
- an undirected graph- Returns:
- a (customized) EdgeBetweeness
-
-