digraph G {
"DUT0" [label="DUT0"]; "DUT1" [label="DUT1"];
"DUT0" -> "DUT1" [headlabel="1", taillabel="2"];
"DUT1" -> "DUT1" [taillabel="1", headlabel="3"];
}
I am using the below script in graphviz dotEditor to create my graph.
The script mentioned above creates below diagram.
My requirement is: Instead of creating a new taillabel(1) on node DUT1(Edge from 1-->3) , it should use the same existing one.
How can I achieve this? Please help, Thanks in advance.
Adding the resulting image which is required.