graphviz-ify graphs and add some more structure
parent
de11738210
commit
f3997cd09e
@ -0,0 +1,13 @@
|
||||
graph {
|
||||
A1 [label="A's PDP-11"]
|
||||
AV [label="A's virtual device"]
|
||||
A2 [label="A's Osborne 2"]
|
||||
B1 [label="B's Dynabook"]
|
||||
BV [label="B's virtual device"]
|
||||
B2 [label="B's VAX"]
|
||||
A1 -- AV
|
||||
AV -- A2
|
||||
A2 -- B1
|
||||
B1 -- BV
|
||||
BV -- B2
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
@ -0,0 +1,13 @@
|
||||
graph {
|
||||
A1 [label="A's PDP-11"]
|
||||
AM [label="A's master key"]
|
||||
A2 [label="A's Osborne 2"]
|
||||
B1 [label="B's Dynabook"]
|
||||
BM [label="B's master key"]
|
||||
B2 [label="B's VAX"]
|
||||
A1 -- AM
|
||||
AM -- A2
|
||||
AM -- BM
|
||||
B1 -- BM
|
||||
BM -- B2
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
Loading…
Reference in New Issue