diff options
Diffstat (limited to 'presentation/switchdfst.tex')
-rw-r--r-- | presentation/switchdfst.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/presentation/switchdfst.tex b/presentation/switchdfst.tex new file mode 100644 index 0000000..f27491c --- /dev/null +++ b/presentation/switchdfst.tex | |||
@@ -0,0 +1,8 @@ | |||
1 | \begin{tikzpicture}[->,auto,node distance=2.5cm] | ||
2 | \node[initial,state,accepting] (a) {$A$}; | ||
3 | \node[state,accepting] (b) [right of=a] {$B$}; | ||
4 | \path (a) edge [bend left=20] node [above] {$(\text{s}, \epsilon)$} (b) | ||
5 | (b) edge [bend left=20] node [below] {$(\text{s}, \epsilon)$} (a) | ||
6 | (a) edge [loop above] node {$(\text{p}, a)$} (a) | ||
7 | (b) edge [loop above] node {$(\text{p}, b)$} (b); | ||
8 | \end{tikzpicture} | ||