Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.75 KB | None | 0 0
  1. //Non deterministic machine, which accept all key words
  2. digraph dsm {
  3.     S0 [label="S"][shape=circle];
  4.     S1 [label="1"][shape=circle];
  5.     S2 [label="2"][shape=doublecircle];
  6.     S3 [label="3"][shape=circle];
  7.     S4 [label="4"][shape=circle];
  8.     S5 [label="5"][shape=circle];
  9.     S6 [label="6"][shape=doublecircle];
  10.     S7 [label="7"][shape=circle];
  11.     S8 [label="8"][shape=circle];
  12.     S9 [label="9"][shape=circle];
  13.     S10 [label="10"][shape=doublecircle];
  14.     S11 [label="11"][shape=circle];
  15.     S12 [label="12"][shape=circle];
  16.     S13 [label="13"][shape=doublecircle];
  17.     S14 [label="14"][shape=circle];
  18.     S15 [label="15"][shape=doublecircle];
  19.     S16 [label="16"][shape=circle];
  20.     S17 [label="17"][shape=circle];
  21.     S18 [label="18"][shape=circle];
  22.     S19 [label="19"][shape=doublecircle];
  23.     S20 [label="20"][shape=circle];
  24.     S21 [label="21"][shape=circle];
  25.     S22 [label="22"][shape=circle];
  26.     S23 [label="23"][shape=circle];
  27.     S24 [label="24"][shape=doublecircle];
  28.     SPACE [color=white][label=""];
  29.     S0 -> S14 [label = "i"];
  30.     S0 -> S20 [label = "f"];
  31.     S0 -> S7 [label = "e"];
  32.     S0 -> S3 [label = "t"];
  33.     S0 -> S16 [label = "t"];
  34.     S0 -> S1 [label = "i"];
  35.     S0 -> S11 [label = "l"];
  36.     S1 -> S2 [label = "f"];
  37.     S3 -> S4 [label = "h"];
  38.     S4 -> S5 [label = "e"];
  39.     S5 -> S6 [label = "n"];
  40.     S7 -> S8 [label = "l"];
  41.     S8 -> S9 [label = "s"];
  42.     S9 -> S10 [label = "e"];
  43.     S11 -> S12 [label = "e"];
  44.     S12 -> S13 [label = "t"];
  45.     S14 -> S15 [label = "n"];
  46.     S16 -> S17 [label = "r"];
  47.     S17 -> S18 [label = "u"];
  48.     S18 -> S19 [label = "e"];
  49.     S20 -> S21 [label = "a"];
  50.     S21 -> S22 [label = "l"];
  51.     S22 -> S23 [label = "s"];
  52.     S23 -> S24 [label = "e"];
  53.     SPACE -> S0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement