この問題があり、助けが必要です。これが私のコードです:
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 のクリークかどうかをテストし、それが true の場合は 1 つのエッジを削除したいので、complete-graph(3) を削除できます。どうやってやるの?
ありがとう