MCPcopy Index your code
hub / github.com/Persper/code-analytics / devrank_c

Function devrank_c

dev_analysis.py:60–68  ·  view source on GitHub ↗
(graph, alpha_low, alpha_high, alpha_step)

Source from the content-addressed store, hash-verified

58 return pra
59
60def devrank_c(graph, alpha_low, alpha_high, alpha_step):
61 dra = []
62 a = alpha_low
63 while (a <= alpha_high):
64 print('Running DevRank-C for alpha=' + str(a))
65 dr = devrank(graph, alpha=a)
66 dra.append(dr.items())
67 a += alpha_step
68 return dra
69
70def devrank_c2(graph, alpha_low, alpha_high, alpha_step):
71 dra = []

Callers 1

mainFunction · 0.85

Calls 2

devrankFunction · 0.90
itemsMethod · 0.80

Tested by

no test coverage detected