Last active
July 21, 2017 06:07
-
-
Save evanrinehart/c7506840793f7010c995cb824b7c89d7 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 G { | |
center=true; | |
size="7.5,10"; | |
nodesep=1; | |
idle [shape=circle, height=1, rank=source]; | |
effect1 [shape=circle, height=1]; | |
effect2 [shape=circle, height=1]; | |
effect3 [shape=circle, height=1, rank=sink]; | |
{rank=same; "effect1"; "effect2"} | |
idle -> idle [label="time\ntick" tailport=ne, headport=nw]; | |
idle -> effect2 [label="time\nout"]; | |
effect1 -> idle [label="effect\nover"]; | |
effect1 -> effect2 [label="effect\nover\n(choose poorly)"]; | |
effect1 -> effect3 [label="effect\nover\n(solved)"]; | |
effect2 -> idle [label="effect\nover"]; | |
idle -> effect1 [label="touch"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment