Added files

This commit is contained in:
saundersp
2023-05-07 19:46:28 +02:00
parent c647e2bb5c
commit 4ef410ccd0
26 changed files with 2625 additions and 0 deletions

View File

@ -0,0 +1,29 @@
digraph {
node [shape = plaintext, fontcolor = White, fontsize = 30];
rankdir = LR;
bgcolor = None;
Edge [fontcolor = White, color = White, fontsize = 25];
subgraph pos {
Edge [constraint = False];
0 -> 1 [taillabel = 0];
-1 -> 2 [taillabel = 2];
-2 -> 3 [taillabel = 4];
-3 -> 4 [taillabel = 6];
-4 -> 5 [taillabel = 8];
}
subgraph neg {
Edge [constraint = False];
1 -> -1 [taillabel = 1];
2 -> -2 [taillabel = 3];
3 -> -3 [taillabel = 5];
4 -> -4 [taillabel = 7];
5 -> -5 [taillabel = 9];
}
subgraph dots {
node [label = "..."];
d; md;
}
md -> -5 -> -4 -> -3 -> -2 -> -1 -> 0 -> 1 -> 2 -> 3 -> 4 -> 5 -> d [color = None];
}