点工具加倍箭头

时间:2016-08-01 10:11:14

标签: cluster-computing graphviz dot subgraph

我最近一直使用dot来创建一个相当复杂的汇编程序的流程图和调用图。总而言之,这只是完美的,只需要一点点。有时,当从一个集群内的一个节点绘制一条线到另一个集群中的另一个节点时,该线会以某种方式加倍。

我添加了我的问题的精简版本作为代码和点输出图像。

由于

digraph G {

  ratio=auto; node[fontsize=12]; label="boot"; newrank=true;

  {  
    node[shape=plaintext];
    1->2[arrowsize=0.7,penwidth=0.1];
  }

  Reset->uart_init[arrowsize=0.7, penwidth=0.1];

  { rank=same; "Reset"; "1"; }
  { rank=same; "uart_init"; "2"; }

  /* terminalhooks cluster */
  subgraph cluster42 {
    fontsize=12;
    label="terminalhooks.asm";
    labelloc=b;  
    type->emit[arrowsize=0.7,penwidth=0.1];
    emit[label=<emit<BR/><FONT POINT-SIZE="8">Terminal redirection hooks<BR/>für eventuelle Umleitungen</FONT>>];
  }

  /* stm-terminal cluster */  
  subgraph cluster43 {
    fontsize=12;
    label="stm-terminal.asm";
    labelloc=b;  
    emit->serial_emit->serial_qemit[arrowsize=0.7,penwidth=0.1];
    serial_emit[label=<serial_emit<BR/><FONT POINT-SIZE="8">Ausgabe Char via UART</FONT>>];
    serial_qemit[label=<serial_qemit<BR/><FONT POINT-SIZE="8">Prüft TXE (Transmit Buffer Empty)</FONT>>];
  }
  { rank=same; "type"; "emit"; "serial_emit"; "serial_qemit"; } 
}

dot graph

1 个答案:

答案 0 :(得分:1)

我不知道为什么会这样,但添加tailport=e似乎解决了这个问题:

 emit->serial_emit->serial_qemit[tailport=e,arrowsize=0.7,penwidth=0.1];
 #                          -----^-----

编辑:

newrank atr似乎导致问题。

digraph G {
  newrank=true;
  subgraph cluster42 {
        0;
        1; 
        0->1;
  }     
  subgraph cluster43 {
        2;
        3; 
        1->2->3;
  }     
  { rank=same; 0; 1; 2; 3; }
}

产生

pic1

但如果删除:

  newrank=true;

它产生:

pic2

编辑2:

对于此示例,您可以使用rankdir=LR并删除rank=same

digraph G {
  rankdir=LR;
  subgraph cluster42 {
        0; 
        1; 
        0->1;
  }     
  subgraph cluster43 {
        2; 
        3; 
        1->2->3;
  }
}

pic3

也许你也可以对你的复杂图表做同样的事情。