doc/tutorial.dox
changeset 2165 947d36fb3b49
child 2166 c67e8b928a95
equal deleted inserted replaced
-1:000000000000 0:0914a8fe7ec4
       
     1 /**
       
     2 \page Tutorial LEMON Tutorial
       
     3 
       
     4 <H2>Table of Contents</H2>
       
     5 
       
     6 <OL>
       
     7   <LI><A href="#intro">Introduction</A>
       
     8   <LI><A href="#get_start">Getting Started</A>
       
     9   <UL>
       
    10     <LI><A href="#hello_world">Hello World in LEMON</A>
       
    11     <LI><A href="#compile">Compiling Hello World</A>
       
    12   </UL>
       
    13   <LI><A href="#basic">Basic concepts</A>
       
    14   <UL>
       
    15     <LI><A href="#list_graph">ListGraph - a versatile directed graph</A>
       
    16     <LI><A href="#maps1">Maps I.</A>
       
    17   </UL>
       
    18   <LI><A href="#file">Lemon Graph File Format</A>
       
    19   <LI><A href="#algos">Algorithms</A>
       
    20   <UL>
       
    21     <LI><A href="#bfs_dfs">Bfs/Dfs</A>
       
    22     <LI><A href="#dijkstra">Dijkstra</A>
       
    23     <LI><A href="#kruskal">Kruskal</A>
       
    24   </UL>
       
    25   <LI><A href="#maps2">Maps II.</A>
       
    26   <UL>
       
    27     <LI><A href="#custom_maps">Writing Custom ReadMap</A>
       
    28     <LI><A href="#map_adaptors">Map Adaptors</A>
       
    29     <LI><A href="#spec_maps">Special Purpose Maps</A>
       
    30   </UL>
       
    31   <LI><A href="#show">Show a graph</A>
       
    32   <LI><A href="#misc">Miscellaneous Tool</A>
       
    33   <UL>
       
    34     <LI><A href="#lp">LP solver</A>
       
    35     <LI><A href="#simann">Simulated Annealing</A>
       
    36   </UL>
       
    37 </OL>
       
    38 
       
    39 <H2 id="intro">Introduction</H2>
       
    40 
       
    41 <H2 id="get_start">Getting Started</H2>
       
    42 
       
    43   <H3 id="hello_world">Hello World in LEMON</H3>
       
    44 
       
    45   <H3 id="compile">Compiling Hello World</H3>
       
    46 
       
    47 <H2 id="basic">Basic concepts</H2>
       
    48 
       
    49   <H3 id="list_graph">ListGraph - a versatile directed graph</H3>
       
    50 
       
    51   <H3 id="maps1">Maps I.</H3>
       
    52 
       
    53 <H2 id="file">Lemon Graph File Format</H2>
       
    54 
       
    55 <H2 id="algos">Algorithms</H2>
       
    56 
       
    57   <H3 id="bfs_dfs">Bfs/Dfs</H3>
       
    58 
       
    59   <H3 id="dijkstra">Dijkstra</H3>
       
    60 
       
    61   <H3 id="kruskal">Kruskal</H3>
       
    62 
       
    63 <H2 id="maps2">Maps II.</H2>
       
    64 
       
    65   <H3 id="custom_maps">Writing Custom ReadMap</H3>
       
    66 
       
    67   <H3 id="map_adaptors">Map Adaptors</H3>
       
    68 
       
    69   <H3 id="spec_maps">Special Purpose Maps</H3>
       
    70 
       
    71 <H2 id="show">Show a graph</H2>
       
    72 
       
    73 <H2 id="misc">Miscellaneous Tool</H2>
       
    74 
       
    75   <H3 id="lp">LP solver</H3>
       
    76 
       
    77   <H3 id="simann">Simulated Annealing</H3>
       
    78 
       
    79 */