-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_graph_5.graphml
38 lines (38 loc) · 1.06 KB
/
my_graph_5.graphml
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
<?xml version='1.0' encoding='utf-8'?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"><key id="d0" for="edge" attr.name="weight" attr.type="long"/>
<graph edgedefault="undirected"><node id="0"/>
<node id="1"/>
<node id="2"/>
<node id="3"/>
<node id="4"/>
<edge source="0" target="1">
<data key="d0">13</data>
</edge>
<edge source="0" target="2">
<data key="d0">14</data>
</edge>
<edge source="0" target="3">
<data key="d0">3</data>
</edge>
<edge source="0" target="4">
<data key="d0">8</data>
</edge>
<edge source="1" target="2">
<data key="d0">8</data>
</edge>
<edge source="1" target="3">
<data key="d0">4</data>
</edge>
<edge source="1" target="4">
<data key="d0">16</data>
</edge>
<edge source="2" target="3">
<data key="d0">10</data>
</edge>
<edge source="2" target="4">
<data key="d0">18</data>
</edge>
<edge source="3" target="4">
<data key="d0">4</data>
</edge>
</graph></graphml>