aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/APPNOTE_011_Design_Investigation/example_03.dot
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source/APPNOTE_011_Design_Investigation/example_03.dot')
-rw-r--r--docs/source/APPNOTE_011_Design_Investigation/example_03.dot11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/source/APPNOTE_011_Design_Investigation/example_03.dot b/docs/source/APPNOTE_011_Design_Investigation/example_03.dot
new file mode 100644
index 000000000..e19d24af7
--- /dev/null
+++ b/docs/source/APPNOTE_011_Design_Investigation/example_03.dot
@@ -0,0 +1,11 @@
+digraph "example" {
+rankdir="LR";
+remincross=true;
+v0 [ label="a" ];
+v1 [ label="b" ];
+v2 [ label="$2_Y" ];
+c4 [ shape=record, label="{{<p1> A|<p2> B}|$2\n$add|{<p3> Y}}" ];
+v0:e -> c4:p1:w [color="black", label=""];
+v1:e -> c4:p2:w [color="black", label=""];
+c4:p3:e -> v2:w [color="black", style="setlinewidth(3)", label=""];
+}