(graph, alpha_low, alpha_high, alpha_step)
| 58 | return pra |
| 59 | |
| 60 | def 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 | |
| 70 | def devrank_c2(graph, alpha_low, alpha_high, alpha_step): |
| 71 | dra = [] |