我有这个问题,我需要帮助,这是我的代码:
cliques=[clique for clique in nx.find_cliques(GC) if len(clique)>2]
for clique in cliques:
if len (clique)==3:
GC.remove_edge()
print "Clique to appear: ",clique
#draw the graph
nx.draw(GC)
plt.show()
首先我在我的图表中搜索以找到派系,然后我测试长度为 3 的派系,如果它是真的我想删除一条边所以我可以消除完整图(3)。我怎样才能做到这一点?
谢谢