From 9a5b5be7a96cf857529211906aed559eafd407e1 Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Wed, 23 Nov 2016 17:41:56 +0100 Subject: NFAs and determinization of them. --- figs/example4.dot | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 figs/example4.dot (limited to 'figs/example4.dot') diff --git a/figs/example4.dot b/figs/example4.dot new file mode 100644 index 0000000..a4ee46f --- /dev/null +++ b/figs/example4.dot @@ -0,0 +1,11 @@ +digraph example4 { + rankdir="LR"; + node [texmode="math",shape="circle",style="state"]; + q0 [style="state,initial",label="0"]; + q1 [style="state",label="1"]; + q2 [style="state,final",label="2"]; + edge [texmode="math",lblstyle="auto"]; + q0 -> q0 [label="a,b",topath="loop above"]; + q0 -> q1 [label="a"]; + q1 -> q2 [label="a,b"]; +} -- cgit v1.2.3