summaryrefslogtreecommitdiffstats
path: root/figs/example6c.dot
diff options
context:
space:
mode:
Diffstat (limited to 'figs/example6c.dot')
-rw-r--r--figs/example6c.dot11
1 files changed, 11 insertions, 0 deletions
diff --git a/figs/example6c.dot b/figs/example6c.dot
new file mode 100644
index 0000000..64dfcb3
--- /dev/null
+++ b/figs/example6c.dot
@@ -0,0 +1,11 @@
+digraph example6c {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ q0 [style="state,initial,final,accepting below",label="0"];
+ q2 [style="state",label="2"];
+ edge [texmode="math",lblstyle="auto"];
+ q0 -> q0 [label="0",topath="loop above",texlbl="$0|11$"];
+ q0 -> q2 [label="10"];
+ q2 -> q2 [label="1",topath="loop above",texlbl="$1|00$"];
+ q2 -> q0 [label="01"];
+}