Skip to content
Snippets Groups Projects
Commit e4003d29 authored by Yoann Dufresne's avatar Yoann Dufresne
Browse files

debug cluster on dict key missing

parent 0373a992
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,10 @@ class CliqueDGFactory(AbstractDGFactory):
neighbors = list(subgraph.neighbors(node))
# Looks into the neighbors for clique pairing
for nei in neighbors:
if nei not in clq_per_node:
print("!!!!!!!!!!!!!!!")
print(clq_per_node)
print("!!!!!!!!!!!!!!!")
nei_clqs = clq_per_node[nei]
# Pair useful cliques
for nei_clq in nei_clqs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment