summaryrefslogtreecommitdiffstats
path: root/figs/example1.dot
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2016-11-23 15:41:06 +0100
committerDavid A. Madore <david+git@madore.org>2016-11-23 15:43:41 +0100
commitf6780feb6aae79f7a476547cb68b37b97bc5d585 (patch)
tree7a3bbd6834cb7d044ca6d34d39157ef88015a49f /figs/example1.dot
parent83a2cb4675358bbc4df0b50dbf25d8c295330da7 (diff)
downloadinf105-f6780feb6aae79f7a476547cb68b37b97bc5d585.tar.gz
inf105-f6780feb6aae79f7a476547cb68b37b97bc5d585.tar.bz2
inf105-f6780feb6aae79f7a476547cb68b37b97bc5d585.zip
Incomplete DFAs. Change formating of self-loops in graphs.
Diffstat (limited to 'figs/example1.dot')
-rw-r--r--figs/example1.dot4
1 files changed, 2 insertions, 2 deletions
diff --git a/figs/example1.dot b/figs/example1.dot
index 60873a6..dc824b2 100644
--- a/figs/example1.dot
+++ b/figs/example1.dot
@@ -4,8 +4,8 @@ digraph example1 {
q0 [style="state,initial",label="0"];
q1 [style="state,final",label="1"];
edge [texmode="math",lblstyle="auto"];
- q0 -> q0 [label="a"];
- q1 -> q1 [label="a"];
+ q0 -> q0 [label="a",topath="loop above"];
+ q1 -> q1 [label="a",topath="loop above"];
q0 -> q1 [label="b"];
q1 -> q0 [label="b"];
}