0

有人可以帮我弄清楚为什么下面的图表永远不会在点中生成吗?我认为这个问题与headport和tailport有关。如果我把它们拿出来就可以了,但理想情况下,出于风格原因,我希望它们留下来。

digraph G {
    nodesep = 0.5;
    0 [width=0.75, height=0.75, fontsize=20];
    1 [width=0.75, height=0.75, fontsize=20, shape=square];
    2 [width=0.75, height=0.75, fontsize=20];
    3 [width=0.75, height=0.75, fontsize=20];
    4 [width=0.75, height=0.75, fontsize=20];
    5 [width=0.75, height=0.75, fontsize=20, shape=square];
    6 [width=0.75, height=0.75, fontsize=20];
    7 [width=0.75, height=0.75, fontsize=20, shape=square];
    8 [width=0.75, height=0.75, fontsize=20, shape=square];
    9 [width=0.75, height=0.75, fontsize=20, shape=square];
    10 [width=0.75, height=0.75, fontsize=20, shape=square];
    11 [width=0.75, height=0.75, fontsize=20, shape=square];
    12 [width=0.75, height=0.75, fontsize=20];
    subgraph directed{
            rankdir= LR;rank= max;
            0->1->2->3->4->5->6->7->8->9->10->11->12;
    }
    subgraph undirected{
            rankdir= LR;rank= min;edge[tailport=n,headport=n];
            0->1[dir=none, color=red];
            0->2[dir=none, color=red];
            1->9[dir=none, color=red];
            2->3[dir=none, color=red];
            2->8[dir=none, color=red];
            3->4[dir=none, color=red];
            4->8[dir=none, color=red];
            7->9[dir=none, color=red];
            8->9[dir=none, color=red];
            9->10[dir=none, color=red];
            9->11[dir=none, color=red];
            10->11[dir=none, color=red];
    }
}
4

2 回答 2

0

如果不花大量时间挖掘源代码,很难说出原因,但您可以将麻烦的元素移出第二个子图来解决问题:

从无向子图中删除 1->9 和 2->8,并在其下方添加它们:

digraph G {
    nodesep = 0.5;
    0 [width=0.75, height=0.75, fontsize=20];
    1 [width=0.75, height=0.75, fontsize=20, shape=square];
    2 [width=0.75, height=0.75, fontsize=20];
    3 [width=0.75, height=0.75, fontsize=20];
    4 [width=0.75, height=0.75, fontsize=20];
    5 [width=0.75, height=0.75, fontsize=20, shape=square];
    6 [width=0.75, height=0.75, fontsize=20];
    7 [width=0.75, height=0.75, fontsize=20, shape=square];
    8 [width=0.75, height=0.75, fontsize=20, shape=square];
    9 [width=0.75, height=0.75, fontsize=20, shape=square];
    10 [width=0.75, height=0.75, fontsize=20, shape=square];
    11 [width=0.75, height=0.75, fontsize=20, shape=square];
    12 [width=0.75, height=0.75, fontsize=20];
    subgraph directed{
            rankdir= LR;rank= max;
            0->1->2->3->4->5->6->7->8->9->10->11->12;
    }
    subgraph undirected{
            rankdir= LR;rank= min;edge[tailport=n,headport=n];
            0->1[dir=none, color=red];
            0->2[dir=none, color=red];
            2->3[dir=none, color=red];
            3->4[dir=none, color=red];
            4->8[dir=none, color=red];
            7->9[dir=none, color=red];
            8->9[dir=none, color=red];
            9->10[dir=none, color=red];
            9->11[dir=none, color=red];
            10->11[dir=none, color=red];
    }
    1->9[dir="none", color="red", headport="n"];
    2->8[dir="none", color="red", headport="n"];
}
于 2013-04-11T20:07:16.230 回答
0

很难知道你在追求什么。但是,该图有一些问题:

  • 节点不能是多个子图的一部分——它们要么在图中,要么在子图中,无论它们首先出现在哪里。你的应该出现在哪里?
  • rankdir属性,不能应用于子图

编辑

跟进您的评论,这是一个没有任何子图的版本。但是,您不会喜欢边缘的布线,这是难以控制的。

这个想法是将节点对齐在一条直线上,然后添加其他边,constraint=false以免它们影响节点的排名。

digraph G {
    nodesep = 0.5;
    node[width=0.75, height=0.75, fontsize=20];
    rankdir=LR;

    0;
    1 [shape=square];
    2;
    3;
    4;
    5 [shape=square];
    6;
    7 [shape=square];
    8 [shape=square];
    9 [shape=square];
    10 [shape=square];
    11 [shape=square];
    12;

    0->1->2->3->4->5->6->7->8->9->10->11->12;

    edge[constraint=false, tailport=n,headport=n,dir=none, color=red];
    0->1;
    0->2;
    1->9;
    2->3;
    2->8;
    3->4;
    4->8;
    7->9;
    8->9;
    9->10;
    9->11;
    10->11;
}
于 2013-04-11T19:03:19.393 回答