diff options
author | David A. Madore <david+git@madore.org> | 2016-11-23 21:13:54 +0100 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2016-11-25 15:42:53 +0100 |
commit | a7aea4e4e8bd899596854733f592f73df927ec5c (patch) | |
tree | f56d84a06e782cfc69ca796c1ba1c983774026cc /figs | |
parent | e6fbe5a42f043dccd603de0509bcd5391f1aecf7 (diff) | |
download | inf105-a7aea4e4e8bd899596854733f592f73df927ec5c.tar.gz inf105-a7aea4e4e8bd899596854733f592f73df927ec5c.tar.bz2 inf105-a7aea4e4e8bd899596854733f592f73df927ec5c.zip |
NFAs with spontaneous transitions: equivalence.
Diffstat (limited to 'figs')
-rw-r--r-- | figs/example5ne.dot | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/figs/example5ne.dot b/figs/example5ne.dot new file mode 100644 index 0000000..8371593 --- /dev/null +++ b/figs/example5ne.dot @@ -0,0 +1,14 @@ +digraph example5ne { + 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",topath="loop above"]; + q0 -> q1 [label="b"]; + q1 -> q1 [label="b",topath="loop above"]; + q1 -> q2 [label="c"]; + q2 -> q2 [label="c",topath="loop above"]; + q0 -> q2 [label="c"]; +} |