From 16db49ec807cca5e201243d35b16eed028d03ae8 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Fri, 27 Jan 2017 18:36:19 +0100 Subject: An exercise on finite automata. --- figs/ex3p1c.dot | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 figs/ex3p1c.dot (limited to 'figs/ex3p1c.dot') 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"]; +} -- cgit v1.2.3