Add asymmetric graph

This commit is contained in:
Valentin Brandl 2018-11-27 15:24:50 +01:00
parent c02c0d887e
commit 979f833ad0
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -0,0 +1,30 @@
graph {
rankdir=LR;
node [ shape=circle ];
{
rank=same;
0;
3;
}
{
rank = same;
1;
2;
}
{
rank=same;
4;
}
{
rank=same;
5;
}
0 -- 1
0 -- 2
1 -- 2
0 -- 3
3 -- 2
1 -- 4
2 -- 4
4 -- 5
}