You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.1 KiB

1 month ago
  1. \item \lect Find a \textit{symbolic encoding} for the \textit{transition relation} of the following \emph{transition system} and
  2. simplify your formulas. Use a binary encoding to encode the states, e.g.,
  3. encode the state $s_2$ with the formula $v_1 \land \neg v_0$.
  4. \begin{center}
  5. \vspace{-2em}
  6. \begin{tikzpicture}[auto, node distance=3cm,shorten >=1pt,
  7. thick,node/.style={circle,draw,minimum size=25pt}]
  8. \node[node] (s0) {$s_0$};
  9. \node[node] (s1) [right of=s0] {$s_1$};
  10. \node[node] (s2) [below of=s1] {$s_2$};
  11. \node[node] (s3) [below of=s0] {$s_3$};
  12. \path[->] (s0) edge (s1);
  13. \path[<->] (s0) edge (s2);
  14. \path[<->] (s0) edge (s3);
  15. \path[<->] (s1) edge (s2);
  16. \path[<->] (s1) edge (s3);
  17. \path[<->] (s2) edge (s3);
  18. \path[->] (s0.120) edge[bend right=90, looseness=15, out=240, in=300] (s0.150);
  19. \path[->] (s1.30) edge[bend right=90, looseness=15, out=240, in=300] (s1.60);
  20. %\path[->] (s2.30) edge[bend right=90, looseness=15, out=240, in=300] (s2.60);
  21. \path[->] (s3.120) edge[bend right=90, looseness=15, out=240, in=300] (s3.150);
  22. \end{tikzpicture}
  23. \end{center}