Created
April 19, 2020 11:02
-
-
Save jO-Osko/53298b73e0204edae4255905e19d2bc0 to your computer and use it in GitHub Desktop.
Priprave IOI
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="LR"; | |
subgraph cluster_0{ | |
style=filled; | |
color=lightgray; | |
//1; | |
} | |
subgraph cluster_1{ | |
style=filled; | |
color=lightgray; | |
//2; | |
} | |
subgraph cluster_2{ | |
style=filled; | |
//color=lightgray; | |
color=white; | |
style=filled; | |
color=lightgray; | |
//3 4 5 6 7; | |
} | |
1[xlabel="1,1", style=filled, fillcolor=yellow] | |
2[xlabel="2,2", style=filled, fillcolor=yellow] | |
3[xlabel="3,3", style=filled, fillcolor=green] | |
4[xlabel="4,3", style=filled, fillcolor=gray] | |
5[xlabel="5,3", style=filled, fillcolor=gray] | |
6[xlabel="6,4", style=filled, fillcolor=gray] | |
7[xlabel="7,4", style=filled, fillcolor=gray] | |
1 -> 2; | |
2 -> 3 -> 4 -> 5 -> 3; | |
4 -> 6 -> 7 -> 4; | |
stack[label="1,2,3,4,5,6,7", shape=rectangle] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment