Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.33 KB | None | 0 0
  1. //Machine, which accept all identifiers
  2. digraph dsm {
  3.     S0 [label="2"][shape=circle];
  4.     S1 [label="1"][shape=doublecircle];
  5.     S2 [label="0"][shape=circle];
  6.     SPACE [color=white][label=""];
  7.     S0 -> S0 [label = "?"];
  8.     S1 -> S1 [label = "?"];
  9.     S2 -> S1 [label = "?"];
  10.     S2 -> S0 [label = "[0-9]"];
  11.     SPACE -> S2;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement