1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
<?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">
<!-- Created by igraph -->
<key id="e_type" for="edge" attr.name="type" attr.type="boolean"/>
<graph id="G" edgedefault="directed">
<node id="n0">
</node>
<node id="n1">
</node>
<edge source="n0" target="n1">
<data key="e_type">true</data>
</edge>
</graph>
</graphml>
|