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