summaryrefslogtreecommitdiffstats
path: root/figs/cn2p1b.dot
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2017-03-17 17:19:37 +0100
committerDavid A. Madore <david+git@madore.org>2017-03-17 17:19:37 +0100
commit166e82b6033703f922d08911ff8e0da09ffd18fd (patch)
tree6d34b880427aa8e293089bcd192f2d38170a39c7 /figs/cn2p1b.dot
parentfd3971899dbc94325b09162e18e933568f4da719 (diff)
downloadinf105-166e82b6033703f922d08911ff8e0da09ffd18fd.tar.gz
inf105-166e82b6033703f922d08911ff8e0da09ffd18fd.tar.bz2
inf105-166e82b6033703f922d08911ff8e0da09ffd18fd.zip
Recovery exam: an exercise on finite automata.
Diffstat (limited to 'figs/cn2p1b.dot')
-rw-r--r--figs/cn2p1b.dot17
1 files changed, 17 insertions, 0 deletions
diff --git a/figs/cn2p1b.dot b/figs/cn2p1b.dot
new file mode 100644
index 0000000..6600dfb
--- /dev/null
+++ b/figs/cn2p1b.dot
@@ -0,0 +1,17 @@
+digraph cn2p1b {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ q0 [style="state,initial,final,accepting below",label="0"];
+ q2 [style="state,final,accepting below",label="2"];
+ q6 [style="state,final,accepting below",label="6"];
+ q9 [style="state,final",label="9"];
+ edge [texmode="math",lblstyle="auto"];
+ q0 -> q2 [label="a"];
+ q2 -> q6 [label="b"];
+ q2 -> q2 [label="a",topath="loop above"];
+ q0 -> q6 [label="b"];
+ q6 -> q9 [label="a"];
+ q6 -> q6 [label="b",topath="loop above"];
+ q9 -> q6 [label="b"];
+ q9 -> q9 [label="a",topath="loop above"];
+}