make the dependency graph more readable

This commit is contained in:
Thibault Duplessis
2025-03-02 10:11:49 +01:00
parent a786624152
commit 412c9700e6
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -94,7 +94,7 @@ for node in G.nodes:
pydot_graph = nx.drawing.nx_pydot.to_pydot(G)
# pydot_graph.set_rankdir('LR')
# pydot_graph.set_ratio(1)
pydot_graph.set_ratio(0.4)
sink_nodes = pydot.Subgraph(rank="same")
@@ -119,7 +119,8 @@ for module in essentials_dict:
edge = pydot.Edge(dependency, module)
pydot_graph.add_edge(edge)
edge.set_color('red')
edge.set_color('#88aaff')
edge.set_penwidth(1)
edge.set_arrowsize(0)
pydot_graph.write_png(output_path)
+1 -1
View File
@@ -260,7 +260,7 @@ lazy val round = module("round",
)
lazy val pool = module("pool",
Seq(db, rating),
Seq(rating),
Seq()
)