summaryrefslogtreecommitdiffstats
path: root/figs/ex3p1c.dot
diff options
context:
space:
mode:
Diffstat (limited to 'figs/ex3p1c.dot')
-rw-r--r--figs/ex3p1c.dot13
1 files changed, 13 insertions, 0 deletions
diff --git a/figs/ex3p1c.dot b/figs/ex3p1c.dot
new file mode 100644
index 0000000..c86eee0
--- /dev/null
+++ b/figs/ex3p1c.dot
@@ -0,0 +1,13 @@
+digraph ex3p1c {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ qF [style="state,initial,final,accepting below",label="F"];
+ q6 [style="state",label="6"];
+ qbot [style="state",label="X",texlbl="$\bot$"];
+ edge [texmode="math",lblstyle="auto"];
+ qF -> q6 [label="b"];
+ qF -> qF [label="a",topath="loop above"];
+ q6 -> qF [label="a"];
+ q6 -> qbot [label="b"];
+ qbot -> qbot [label="a,b",topath="loop above"];
+}