Skip to content

Commit

Permalink
🐛 fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRossetti committed Nov 19, 2020
1 parent c5daf84 commit 6687647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dynetx/algorithms/assortativity.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def delta_conformity(dg, start: int, delta: int, alphas: list, labels: list, pro

res = {str(a): {"_".join(profile): {n: 0 for n in g.nodes()} for profile in profiles} for a in alphas}

sp = dn.algorithms.paths.all_time_respecting_paths(dg, start, delta + start)
sp = al.paths.all_time_respecting_paths(dg, start, delta + start)

distances = defaultdict(lambda: defaultdict(int))
for k, v in sp.items():
Expand Down

0 comments on commit 6687647

Please sign in to comment.