graphinius icon indicating copy to clipboard operation
graphinius copied to clipboard

Implement node strength centrality

Open cassinius opened this issue 7 years ago • 0 comments

The node strength is just the sum of the weights of all the adjacent edges (or DEFAULT if unweighted, which in case of DEFAULT==1 would just be the all_degree).

Reason: node strength and node betweenness centrality are connected, networkX documentation quote: "A study of the average value s(b) of the strength for vertices with betweenness b shows that the functional behavior can be approximated by a scaling form: s(b)\approx b^{{\alpha }}"

This could help in speeding up / approximating the betweenness via vectorized computations, thus executing the computations on a SIMD CPU or even GPU

cassinius avatar Feb 12 '18 10:02 cassinius