<isol>

!!! Listing.1

graph [
  node [
    id 0
  ]
  
  ...
  
  node [
    id 6
  ]
  edge [
    source 0
    target 2
  ]
   
  ...

  edge [
    source 2
    target 6
  ]
]


!!! Listing.2 

<?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">
  <graph id="G" edgedefault="undirected">
    <node id="n0"/>
    <node id="n1"/>
    <node id="n2"/>
    <node id="n3"/>
    <node id="n4"/>
    <node id="n5"/>
    <node id="n6"/>
    <edge id="e0" source="n0" target="n2"/>
    <edge id="e1" source="n0" target="n1"/>
    <edge id="e2" source="n1" target="n3"/>
    <edge id="e3" source="n1" target="n4"/>
    <edge id="e4" source="n2" target="n5"/>
    <edge id="e5" source="n2" target="n6"/>
  </graph>
</graphml>


!!! Listing.3

<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns/graphml"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/graphml 
    http://www.yworks.com/xml/schema/graphml/1.0/ygraphml.xsd" 
    xmlns:y="http://www.yworks.com/xml/graphml">
  <key id="d0" for="node" yfiles.type="nodegraphics"/>
  <key id="d1" for="edge" yfiles.type="edgegraphics"/>
  <graph id="G" edgedefault="directed">
    <node id="n0">
      <data key="d0" >
        <y:ShapeNode>
          <y:Geometry  x="75.0" y="0.0" width="30.0" height="30.0"/>
          <y:Fill color="#CCCCFF"  transparent="false"/>
          <y:BorderStyle type="line" width="1.0" color="#000000" />
          <y:Shape type="ellipse"/>
        </y:ShapeNode>
      </data>
    </node>
	.
	.
	.

    <edge id="e0" source="n0" target="n2">
      <data key="d1" >
        <y:PolyLineEdge>
          <y:Path sx="-7.5" sy="15.0" tx="0.0" ty="-15.0"/>
          <y:LineStyle type="line" width="1.0" color="#000000" />
          <y:Arrows source="none" target="none"/>
          <y:BendStyle smoothed="false"/>
        </y:PolyLineEdge>
      </data>
    </edge>
	.
	.
	.

  </graph>
</graphml>


!!! Listing.4

<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns/graphml"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/graphml 
    http://www.yworks.com/xml/schema/graphml/1.0/ygraphml.xsd" 
    xmlns:y="http://www.yworks.com/xml/graphml">
  <key id="d0" for="node" yfiles.type="nodegraphics"/>
  <key id="d1" for="edge" yfiles.type="edgegraphics"/>
  <graph id="G" edgedefault="directed">
    <node id="n0">
      <data key="d0" >
        <y:ShapeNode>
          <y:Fill color="#CCCCFF"/>
        </y:ShapeNode>
      </data>
    </node>
    <node id="n1">
      <data key="d0" >
        <y:ShapeNode>
          <y:Fill color="#FFFF99"/>
        </y:ShapeNode>
      </data>
    </node>
    	.
   	.
    	.
    
    <edge id="e0" directed="false" source="n1" target="n3">
      <data key="d1" >
        <y:PolyLineEdge>
          <y:EdgeLabel>2</y:EdgeLabel>
        </y:PolyLineEdge>
      </data>
    </edge>
    <edge id="e1" directed="false" source="n3" target="n2">
      <data key="d1" >
        <y:PolyLineEdge>
          <y:EdgeLabel>1</y:EdgeLabel>
        </y:PolyLineEdge>
      </data>
    </edge>
    <edge id="e2" source="n0" target="n1">
      <data key="d1" >
        <y:PolyLineEdge>
          <y:EdgeLabel>1.5</y:EdgeLabel>
        </y:PolyLineEdge>
      </data>
    </edge>
	.
	.
	.

  </graph>
</graphml>
