summaryrefslogtreecommitdiffstats
path: root/figs
diff options
context:
space:
mode:
Diffstat (limited to 'figs')
-rw-r--r--figs/ex1p1.dot11
1 files changed, 11 insertions, 0 deletions
diff --git a/figs/ex1p1.dot b/figs/ex1p1.dot
new file mode 100644
index 0000000..6625c8a
--- /dev/null
+++ b/figs/ex1p1.dot
@@ -0,0 +1,11 @@
+digraph ex1p1 {
+ rankdir="LR";
+ node [texmode="math",shape="circle",style="state"];
+ qX [style="state,initial",label="X"];
+ qY [style="state,final",label="Y"];
+ qZ [style="state,final",label="Z"];
+ edge [texmode="math",lblstyle="auto"];
+ qX -> qY [label="0"];
+ qX -> qZ [label="1"];
+ qZ -> qZ [label="0,1",topath="loop below"];
+}