More content

This commit is contained in:
Valentin Brandl
2022-03-08 20:15:29 +01:00
parent a83a4c1c61
commit 73073ded36
9 changed files with 196 additions and 112 deletions

View File

@ -1,52 +1,31 @@
digraph G {
/* splines = false; */
node [ shape = "circle" ];
/* c0 */
/* c1 */
/* n0 */
/* n1 */
/* n2 */
/* n3 */
/* n0 -> n1; */
/* n0 -> n2; */
/* n0 -> n3; */
/* n1 -> n2; */
/* n1 -> n3; */
/* n2 -> n3; */
subgraph cluster0 {
c0
c1
c2
}
/* /1* c0 -> c1; *1/ */
/* /1* c1 -> c0; *1/ */
/* n0 -> c0; */
/* n1 -> c1; */
/* n1 -> c0; */
/* n2 -> c0; */
/* n3 -> c0; */
/* n3 -> c1; */
c0
c1
c2
n0
n1
n2
n0 -> n1;
n0 -> n2;
n1 -> n2;
/* c0 -> c1; */
/* c0 -> c2; */
/* c1 -> c0; */
/* c1 -> c2; */
/* c2 -> c0; */
/* c2 -> c1; */
subgraph cluster1 {
n0
n1
n2
n0 -> c0;
n0 -> c2;
n1 -> c1;
n1 -> c0;
n2 -> c0;
n2 -> c2;
n0 -> n1;
n0 -> n2;
n1 -> n2;
n1 -> n0;
n2 -> n0;
}
c0 -> n0;
c0 -> n2;
c1 -> n1;
c1 -> n0;
c2 -> n0;
c2 -> n2;
}

View File

@ -1,29 +1,36 @@
digraph G {
/* splines = false; */
node [ shape = "circle" ];
c0
c1
c2
n0
n1
n2
subgraph cluster0 {
c0
c1
c2
n0 -> n1;
n0 -> n2;
n1 -> n2;
c0 -> c1;
c0 -> c2;
c1 -> c0;
c1 -> c2;
c2 -> c0;
c2 -> c1;
}
c0 -> c1;
c0 -> c2;
c1 -> c0;
c1 -> c2;
c2 -> c0;
c2 -> c1;
subgraph cluster1 {
n0
n1
n2
n0 -> c0;
n0 -> c2;
n1 -> c1;
n1 -> c0;
n2 -> c0;
n2 -> c2;
n0 -> n1;
n0 -> n2;
n1 -> n2;
n1 -> n0;
n2 -> n0;
}
c0 -> n0;
c0 -> n2;
c1 -> n1;
c1 -> n0;
c2 -> n0;
c2 -> n2;
}