-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphViz001.dot
More file actions
29 lines (29 loc) · 1.31 KB
/
GraphViz001.dot
File metadata and controls
29 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
graph GraphViz
{
node [shape = circle, width = 0.4];
nodesep = 1.5;
Stadium [fillcolor = "#00ffff", style = filled];
UTD [fillcolor = "#00ffff", style = filled];
Gas_Station [fillcolor = "#00ffff", style = filled];
Home [fillcolor = "#00ffff", style = filled];
Library [fillcolor = "#00ffff", style = filled];
Post_Office [fillcolor = "#00ffff", style = filled];
City_Park [fillcolor = "#00ffff", style = filled];
Grocery [fillcolor = "#00ffff", style = filled];
Restaurant [fillcolor = "#00ffff", style = filled];
Stadium -- UTD [style = bold, color = "red", label = "10.00"];
Stadium -- Gas_Station [style = bold, color = "red", label = "10.00"];
UTD -- Home [label = "20.00"];
UTD -- Library [style = bold, color = "red", label = "4.00"];
UTD -- Post_Office [label = "5.00"];
Gas_Station -- Home [label = "6.00"];
Gas_Station -- City_Park [style = bold, color = "red", label = "3.00"];
City_Park -- Home [style = bold, color = "red", label = "3.00"];
Home -- Restaurant [label = "15.00"];
Library -- Post_Office [style = bold, color = "red", label = "1.00"];
Library -- Restaurant [style = bold, color = "red", label = "3.00"];
Post_Office -- Restaurant [label = "4.00"];
City_Park -- Grocery [style = bold, color = "red", label = "2.00"];
Grocery -- Restaurant [label = "18.00"];
label = "Minimum Spanning Tree";
}