From 00f13e46073417e6fe23c841846dea18abec9bdc Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Sat, 28 Oct 2017 23:41:19 +0200 Subject: Add example illustrating Glushkov's construction. --- figs/example8a.dot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 figs/example8a.dot (limited to 'figs/example8a.dot') diff --git a/figs/example8a.dot b/figs/example8a.dot new file mode 100644 index 0000000..b90b713 --- /dev/null +++ b/figs/example8a.dot @@ -0,0 +1,9 @@ +digraph example8a { + rankdir="LR"; + node [texmode="math",shape="circle",style="state"]; + q0 [style="state,initial,final,accepting below",label="0"]; + q1 [style="state,final",label="1"]; + edge [texmode="math",lblstyle="auto"]; + q0 -> q1 [label="a"]; + q1 -> q1 [label="a",topath="loop above"]; +} -- cgit v1.2.3