Created
July 29, 2021 23:41
-
-
Save stevegt/07030c42984c7844b35ef5b0aab2511f to your computer and use it in GitHub Desktop.
testing
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 { | |
rankdir=TB; | |
subgraph cluster_5 { | |
label="inputs"; | |
input1 -> input2 -> input3 [style=invis]; | |
} | |
subgraph cluster_7 { | |
label="consensus"; | |
decision1 -> decision2 -> decision3 [style=invis]; | |
} | |
input1 -> decision1 [style=dashed]; | |
input2 -> decision2 [style=dashed]; | |
input3 -> decision3 [style=dashed]; | |
subgraph cluster_10 { | |
label="global journal"; | |
statement1 -> statement2 -> statement3; | |
} | |
decision1 -> statement1 [style=dashed]; | |
decision2 -> statement2 [style=dashed]; | |
decision3 -> statement3 [style=dashed]; | |
subgraph cluster_20 { | |
label="local state"; | |
function1 -> function2 -> function3; | |
} | |
statement1 -> function1 [style=dashed]; | |
statement2 -> function2 [style=dashed]; | |
statement3 -> function3 [style=dashed]; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment