From 979f833ad0956719636ea6330b136abb2c2fde0b Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Tue, 27 Nov 2018 15:24:50 +0100 Subject: [PATCH] Add asymmetric graph --- school/di-ma/uebung/06/06_3.dot | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 school/di-ma/uebung/06/06_3.dot diff --git a/school/di-ma/uebung/06/06_3.dot b/school/di-ma/uebung/06/06_3.dot new file mode 100644 index 0000000..07900c2 --- /dev/null +++ b/school/di-ma/uebung/06/06_3.dot @@ -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 +}