Loading src/absinth.py +1 −1 Original line number Diff line number Diff line Loading @@ -732,7 +732,7 @@ def draw_propagation(graph: nx.Graph, root_hub_list: list) -> None: for node in path: nodes.add(node) edges = [edge for edge in graph.edges if edge[0] in nodes and edge[1] in nodes] edges = [edge for edge in graph.edges if edge[0] in nodes and edge[1] in nodes and nx.has_path(graph, *edge)] mapping = {node:graph.node[node]['sense'] for node in nodes} Loading Loading
src/absinth.py +1 −1 Original line number Diff line number Diff line Loading @@ -732,7 +732,7 @@ def draw_propagation(graph: nx.Graph, root_hub_list: list) -> None: for node in path: nodes.add(node) edges = [edge for edge in graph.edges if edge[0] in nodes and edge[1] in nodes] edges = [edge for edge in graph.edges if edge[0] in nodes and edge[1] in nodes and nx.has_path(graph, *edge)] mapping = {node:graph.node[node]['sense'] for node in nodes} Loading