-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompleteGraph.xml
45 lines (45 loc) · 1.63 KB
/
completeGraph.xml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<graph>
<vertex ID="0">
<connection destination="1" weight="5" />
<connection destination="2" weight="12" />
<connection destination="3" weight="2" />
<connection destination="4" weight="3" />
<connection destination="5" weight="6" />
</vertex>
<vertex ID="1">
<connection destination="0" weight="5" />
<connection destination="2" weight="4" />
<connection destination="3" weight="2" />
<connection destination="4" weight="15" />
<connection destination="5" weight="7" />
</vertex>
<vertex ID="2">
<connection destination="0" weight="12" />
<connection destination="1" weight="4" />
<connection destination="3" weight="8" />
<connection destination="4" weight="3" />
<connection destination="5" weight="1" />
</vertex>
<vertex ID="3">
<connection destination="0" weight="2" />
<connection destination="1" weight="2" />
<connection destination="2" weight="8" />
<connection destination="4" weight="9" />
<connection destination="5" weight="5" />
</vertex>
<vertex ID="4">
<connection destination="0" weight="3" />
<connection destination="1" weight="15" />
<connection destination="2" weight="3" />
<connection destination="3" weight="9" />
<connection destination="5" weight="10" />
</vertex>
<vertex ID="5">
<connection destination="0" weight="6" />
<connection destination="1" weight="7" />
<connection destination="2" weight="1" />
<connection destination="3" weight="5" />
<connection destination="4" weight="4" />
</vertex>
</graph>