diff options
| author | mo khan <mo@mokhan.ca> | 2025-09-30 11:45:41 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-09-30 11:45:41 -0600 |
| commit | 42a4f9270f46c36d8dea8fd3183ec00159ace50e (patch) | |
| tree | 8abc4837688b0785c32e027f04488f5cc6a4c4fe /assignments/2/graph.dot | |
| parent | 5630d2b8c00b049686e8b67d9361858178f0a07e (diff) | |
Add graph and image
Diffstat (limited to 'assignments/2/graph.dot')
| -rw-r--r-- | assignments/2/graph.dot | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/assignments/2/graph.dot b/assignments/2/graph.dot new file mode 100644 index 0000000..738ca8b --- /dev/null +++ b/assignments/2/graph.dot @@ -0,0 +1,30 @@ +strict graph { + s -- t [label=1] + s -- v [label=5] + t -- s [label=1] + t -- u [label=9] + t -- v [label=6] + t -- y [label=5] + t -- z [label=3] + u -- t [label=9] + u -- v [label=1] + u -- w [label=1] + u -- x [label=2] + u -- y [label=1] + v -- s [label=5] + v -- t [label=6] + v -- u [label=1] + v -- w [label=3] + w -- u [label=1] + w -- v [label=3] + w -- x [label=3] + x -- u [label=2] + x -- w [label=3] + x -- y [label=5] + y -- t [label=5] + y -- u [label=1] + y -- x [label=5] + y -- z [label=11] + z -- t [label=3] + z -- y [label=11] +} |
