From 13b7f25d577023a02722f650813ddab99cce258a Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Fri, 25 Nov 2016 15:26:19 +0100 Subject: Example of state elimination. --- figs/example6b.dot | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 figs/example6b.dot (limited to 'figs/example6b.dot') diff --git a/figs/example6b.dot b/figs/example6b.dot new file mode 100644 index 0000000..8f2d77e --- /dev/null +++ b/figs/example6b.dot @@ -0,0 +1,11 @@ +digraph example6b { + rankdir="LR"; + node [texmode="math",shape="circle",style="state"]; + q0 [style="state,initial,final,accepting below",label="0"]; + q1 [style="state",label="1"]; + edge [texmode="math",lblstyle="auto"]; + q0 -> q0 [label="0",topath="loop above"]; + q0 -> q1 [label="1"]; + q1 -> q0 [label="1"]; + q1 -> q1 [label="1",topath="loop right",texlbl="$01{*}0$"]; +} -- cgit v1.2.3