summaryrefslogtreecommitdiffstats
path: root/figs/example7bm.dot
diff options
context:
space:
mode:
Diffstat (limited to 'figs/example7bm.dot')
-rw-r--r--figs/example7bm.dot13
1 files changed, 13 insertions, 0 deletions
diff --git a/figs/example7bm.dot b/figs/example7bm.dot
new file mode 100644
index 0000000..26bfd5e
--- /dev/null
+++ b/figs/example7bm.dot
@@ -0,0 +1,13 @@
+digraph example7bm {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ q01 [style="state,initial",label="0|1",texlbl="$0\equiv 1$"];
+ q23 [style="state",label="2|3",texlbl="$2\equiv 3$"];
+ q45 [style="state,final",label="4|5",texlbl="$4\equiv 5$"];
+ edge [texmode="math",lblstyle="auto"];
+ q01 -> q01 [label="b,c",topath="loop above"];
+ q23 -> q23 [label="a,c",topath="loop above"];
+ q45 -> q45 [label="a,b,c",topath="loop above"];
+ q01 -> q23 [label="a"];
+ q23 -> q45 [label="b"];
+}