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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
<?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_color" for="edge" attr.name="color" attr.type="string"/>
<graph id="G" edgedefault="directed">
<node id="n0">
</node>
<node id="n1">
</node>
<node id="n2">
</node>
<node id="n3">
</node>
<edge source="n0" target="n1">
<data key="e_color">green</data>
</edge>
<edge source="n1" target="n2">
<data key="e_color">white</data>
</edge>
<edge source="n2" target="n3">
<data key="e_color">black</data>
</edge>
</graph>
</graphml>
<?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_color" for="edge" attr.name="color" attr.type="string"/>
<graph id="G" edgedefault="directed">
<node id="n0">
</node>
<node id="n1">
</node>
<node id="n2">
</node>
<node id="n3">
</node>
<edge source="n0" target="n1">
<data key="e_color">blue</data>
</edge>
<edge source="n1" target="n2">
<data key="e_color">white</data>
</edge>
<edge source="n2" target="n3">
<data key="e_color">black</data>
</edge>
</graph>
</graphml>
<?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_color" for="edge" attr.name="color" attr.type="string"/>
<graph id="G" edgedefault="directed">
<node id="n0">
</node>
<node id="n1">
</node>
<node id="n2">
</node>
<node id="n3">
</node>
<edge source="n0" target="n1">
<data key="e_color">greenredblue</data>
</edge>
<edge source="n1" target="n2">
<data key="e_color">green</data>
</edge>
<edge source="n2" target="n3">
<data key="e_color">green</data>
</edge>
</graph>
</graphml>
|