From f4c419b9ddec15bad267a4463f0720d6e28042d2 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 30 May 2019 12:18:08 +0200 Subject: Further work --- presentation/switchdfst.tex | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 presentation/switchdfst.tex (limited to 'presentation/switchdfst.tex') 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 @@ +\begin{tikzpicture}[->,auto,node distance=2.5cm] + \node[initial,state,accepting] (a) {$A$}; + \node[state,accepting] (b) [right of=a] {$B$}; + \path (a) edge [bend left=20] node [above] {$(\text{s}, \epsilon)$} (b) + (b) edge [bend left=20] node [below] {$(\text{s}, \epsilon)$} (a) + (a) edge [loop above] node {$(\text{p}, a)$} (a) + (b) edge [loop above] node {$(\text{p}, b)$} (b); +\end{tikzpicture} -- cgit v1.2.3