(u, v)
| 103 | """ |
| 104 | |
| 105 | def predict(u, v): |
| 106 | return sum(1 / G.degree(w) for w in nx.common_neighbors(G, u, v)) |
| 107 | |
| 108 | return _apply_prediction(G, predict, ebunch) |
| 109 |
nothing calls this directly
no test coverage detected
searching dependent graphs…