MCPcopy Create free account
hub / github.com/Persper/code-analytics / devrank_c2

Function devrank_c2

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

Source from the content-addressed store, hash-verified

68 return dra
69
70def devrank_c2(graph, alpha_low, alpha_high, alpha_step):
71 dra = []
72 a = alpha_low
73 while (a <= alpha_high):
74 print('Running DevRank-CC for alpha=' + str(a))
75 dra.append(graph.devrank_functions(a))
76 a += alpha_step
77 return dra
78
79def output(ranks_array, worksheet, alpha_low, alpha_high, alpha_step):
80 a = alpha_low

Callers 1

mainFunction · 0.85

Calls 1

devrank_functionsMethod · 0.80

Tested by

no test coverage detected