Treebolic

xml



reads a graph description in the XML format. XML tools can the used on to produce it or Treebolic Generator. The structure of the document is the following, for a tree described as:
root
1 2 3
30 31
300

<treebolic>
   <tree>
       <nodes>
           <root>
               <node ...>1</node>
               <node ...>2</node>
               <node ...>3</node>
                   <node ...>30</node>
                       <node ...>300</node>
                   </node>
                   <node ...>31</node>
               </node>
           </root>
       </nodes>
       <edges/>
   </tree>
</treebolic>