From 166e82b6033703f922d08911ff8e0da09ffd18fd Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Fri, 17 Mar 2017 17:19:37 +0100 Subject: Recovery exam: an exercise on finite automata. --- figs/cn2p1b.dot | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 figs/cn2p1b.dot (limited to 'figs/cn2p1b.dot') 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"]; +} -- cgit v1.2.3