Skip to content

Instantly share code, notes, and snippets.

@stevegt
Created July 29, 2021 23:41
Show Gist options
  • Save stevegt/92f647db2635b0b5947b7f12f5f78031 to your computer and use it in GitHub Desktop.
Save stevegt/92f647db2635b0b5947b7f12f5f78031 to your computer and use it in GitHub Desktop.
testing
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