File: invis.dot

package info (click to toggle)
dot2tex 2.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 968 kB
  • ctags: 337
  • sloc: python: 3,057; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
/* Test invisible edges and nodes */
digraph G {
a -> {
node[style="invis"]
b c d;
}
f [style="invisible"];
a -> e [style="invisible"];
a -> g [style="invis"];
a -> f;
}