Created
March 11, 2019 13:02
-
-
Save gatamar/3ac890174cc226feaa2bda5982a18404 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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