notes/school/di-ma/20181107_2-trans_closure.dot
Valentin Brandl b62a7e60e4
Some checks failed
the build failed
Add dima notes
2019-01-28 20:58:59 +01:00

27 lines
293 B
Plaintext

digraph g {
node [ shape="circle" ];
{
rank="same";
1;
2;
}
{
rank="same";
4;
3;
}
1 -> 2;
2 -> 3;
3 -> 1;
4 -> 1;
edge [ style="dotted" ];
1 -> 3;
2 -> 1;
3 -> 2;
4 -> 2;
4 -> 3;
}