Graphviz:有没有办法强制节点到底部?

发布于 2024-08-04 17:46:16 字数 340 浏览 6 评论 0原文

我正在构建一个 CFG(上下文无关语法),并且我希望退出节点始终位于图的底部。有时它会自然发生,有时却不会。

示例:

digraph G {
  0;
  1;
  4;
  5;
  7;
  8;
  0 -> 4;
  5 -> 7;
  7 -> 8;
  7 -> 1;
  8 -> 5;
  4 -> 7;
}

绘制(使用点):

alt text

节点 1 是我的退出节点,我希望它位于底部。建议?

I'm building a CFG (Context-free grammar), and I'd like the exit node to always be at the bottom of the graph. Sometimes it happens naturally, sometimes it doesn't.

Example:

digraph G {
  0;
  1;
  4;
  5;
  7;
  8;
  0 -> 4;
  5 -> 7;
  7 -> 8;
  7 -> 1;
  8 -> 5;
  4 -> 7;
}

Draws (using dot):

alt text

Node 1 is my exit node, I'd like that to be at the bottom. Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-08-11 17:46:16

对子图使用等级规范。在这种情况下,sink 应该使其位于底部,ma​​x 将使其与 5 处于同一水平:

digraph G {
  0;
  { rank = sink; 1; }
  5;
  4;
  7;
  8;
  0 -> 4;
  5 -> 7;
  7 -> 8;
  7 -> 1;
  8 -> 5;
  4 -> 7;
}

Use rank specification for the subgraph. In this case sink should make it at the bottom and max will make it on the same level as 5:

digraph G {
  0;
  { rank = sink; 1; }
  5;
  4;
  7;
  8;
  0 -> 4;
  5 -> 7;
  7 -> 8;
  7 -> 1;
  8 -> 5;
  4 -> 7;
}
时光无声 2024-08-11 17:46:16

DOT 中尝试选项“-y”

-y          - Invert y coordinate in output

In DOT try the option "-y"

-y          - Invert y coordinate in output
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文