Skip to content

Instantly share code, notes, and snippets.

@gatamar
Created March 11, 2019 13:02
Show Gist options
  • Save gatamar/3ac890174cc226feaa2bda5982a18404 to your computer and use it in GitHub Desktop.
Save gatamar/3ac890174cc226feaa2bda5982a18404 to your computer and use it in GitHub Desktop.
digraph finite_state_machine {
rankdir=LR;
size="8,5"
node [shape = circle];
node [shape = doublecircle]; s1;
node [shape = doublecircle]; s5;
s1 -> s2 [ label = "t1" ];
s2 -> s3 [ label = "t2" ];
s3 -> s1 [ label = "t3" ];
s3 -> s4 [ label = "t4" ];
s5 -> s6 [ label = "t5" ];
s6 -> s7 [ label = "t6" ];
s7 -> s8 [ label = "t7" ];
s4 -> s8 [ label = "t8" ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment