WIP: diff graph with sub graph, before and after model correction

This commit is contained in:
2026-03-17 11:03:52 +01:00
parent 2ef0343338
commit b323c724c9
2 changed files with 79 additions and 6 deletions

View File

@@ -56,7 +56,7 @@ def correct(G, centrality, m_opt, c0_opt, b_opt):
x.append(ver[0])
y.append(ver[1])
keys = iter(centrality.a)
keys = iter(G.vertices())
hull = convex_hull(G)
points = np.stack((np.array(x), np.array(y)), axis=-1)