Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GraphViz ドット レイアウトでかなり大きなレイアウトを計算しています。私のソース構造は、いくつかのノードが接続され、他のノードが接続されていないグラフです。接続されたノードのレイアウトは完璧ですが、ドットは他のすべてのノードを一列に並べるため、出力の長さが非常に長くなります。これを取り除くために何か変更はありますか?
unflattenこれに使用できる Graphviz スイートで呼び出されるプログラムがあります。使用例:
unflatten
unflatten -c 2 graph.dot | dot -Tpng -o graph.png
unflatten に、切断されたノードを長さ 2 までチェーンするように指示します。詳細については、ドキュメントを参照してください。