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