notes/school/di-ma/20181009-graph1.dot
2018-10-13 13:23:37 +02:00

25 lines
213 B
Plaintext

digraph undirected {
edge [ arrowhead="none" ];
node [ shape="circle" ];
{
rank=same;
2;
4;
}
{
rank=same;
3;
}
{
rank=same;
1;
5;
}
1 -> 2;
3 -> 2;
3 -> 4;
2 -> 4;
4 -> 5;
5 -> 6;
}