From b144fa0fb8f49c6a808976a907a91e6c8ab2d53a Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Mon, 30 Jan 2017 11:43:56 +0100 Subject: An exercise on Kleene's algorithm. --- figs/ex3p2.dot | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 figs/ex3p2.dot (limited to 'figs') diff --git a/figs/ex3p2.dot b/figs/ex3p2.dot new file mode 100644 index 0000000..7b9abdb --- /dev/null +++ b/figs/ex3p2.dot @@ -0,0 +1,14 @@ +digraph ex3p2 { + rankdir="LR"; + node [texmode="math",shape="circle",style="state"]; + q0 [style="state,initial,final,initial above,accepting below",label="0"]; + q1 [style="state",label="1"]; + q2 [style="state",label="2"]; + edge [texmode="math",lblstyle="auto"]; + q0 -> q0 [label="a",topath="loop left"]; + q0 -> q1 [label="b"]; + q1 -> q0 [label="b"]; + q1 -> q2 [label="a"]; + q2 -> q1 [label="a"]; + q2 -> q2 [label="b",topath="loop right"]; +} -- cgit v1.2.3