Fix graphviz crash: use polyline splines instead of ortho

splines=ortho triggers a trapezoid-table overflow assertion in
graphviz's dot layout engine on complex graphs. polyline gives
similar angled edges without the crash.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-28 00:21:43 +01:00
parent f2980a9f94
commit d56f6d8170

View File

@@ -104,7 +104,7 @@ class HistoryTree:
'digraph History {', 'digraph History {',
f' rankdir={direction};', f' rankdir={direction};',
' bgcolor="white";', ' bgcolor="white";',
' splines=ortho;', ' splines=polyline;',
f' nodesep={nodesep};', f' nodesep={nodesep};',
f' ranksep={ranksep};', f' ranksep={ranksep};',
' node [shape=plain, fontname="Arial"];', ' node [shape=plain, fontname="Arial"];',