summaryrefslogtreecommitdiffstats
path: root/figs
diff options
context:
space:
mode:
authorDavid A. Madore <david+git@madore.org>2016-11-23 14:13:03 +0100
committerDavid A. Madore <david+git@madore.org>2016-11-23 14:13:03 +0100
commit83a2cb4675358bbc4df0b50dbf25d8c295330da7 (patch)
tree4538a62aa845e7ca65f16e8e247c288e6a5c48b7 /figs
parent5ee05bead1390be4a4824e06a5d52eacb15e57f1 (diff)
downloadinf105-83a2cb4675358bbc4df0b50dbf25d8c295330da7.tar.gz
inf105-83a2cb4675358bbc4df0b50dbf25d8c295330da7.tar.bz2
inf105-83a2cb4675358bbc4df0b50dbf25d8c295330da7.zip
Accessible and inaccessible states.
Diffstat (limited to 'figs')
-rw-r--r--figs/example1b.dot13
1 files changed, 13 insertions, 0 deletions
diff --git a/figs/example1b.dot b/figs/example1b.dot
new file mode 100644
index 0000000..09fecd0
--- /dev/null
+++ b/figs/example1b.dot
@@ -0,0 +1,13 @@
+digraph example1b {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ q0 [style="state,initial",label="0"];
+ q1 [style="state,final",label="1"];
+ q2 [style="state,final",label="2"];
+ edge [texmode="math",lblstyle="auto"];
+ q0 -> q0 [label="a"];
+ q1 -> q1 [label="a"];
+ q0 -> q1 [label="b"];
+ q1 -> q0 [label="b"];
+ q1 -> q2 [style="invisible"];
+}