doc/tutorial.dox
changeset 2195 f47faf6913ab
parent 2166 c67e8b928a95
child 2216 1e45cdeea3cc
     1.1 --- a/doc/tutorial.dox	Mon Sep 04 19:12:44 2006 +0000
     1.2 +++ b/doc/tutorial.dox	Mon Sep 04 19:48:09 2006 +0000
     1.3 @@ -1,67 +1,44 @@
     1.4  /**
     1.5  \page Tutorial LEMON Tutorial
     1.6  
     1.7 -\section toc Table of Contents
     1.8 +<H2>Table of Contents</H2>
     1.9  
    1.10 --# \ref intro
    1.11 --# \ref get_start
    1.12 -  - \ref hello_world
    1.13 -  - \ref compile
    1.14 --# \ref basic
    1.15 -  - \ref list_graph
    1.16 -  - \ref maps1
    1.17 --# \ref file
    1.18 --# \ref algos
    1.19 -  - \ref bfs_dfs
    1.20 -  - \ref dijkstra
    1.21 -  - \ref kruskal
    1.22 --# \ref maps2
    1.23 -  - \ref custom_maps
    1.24 -  - \ref map_adaptors
    1.25 -  - \ref spec_maps
    1.26 --# \ref show
    1.27 --# \ref misc
    1.28 -  - \ref lp
    1.29 -  - \ref simann
    1.30 +<OL style="padding-bottom: 60px">
    1.31 +  <LI>\ref intro
    1.32 +  <LI>\ref getting_started
    1.33 +  <UL>
    1.34 +    <LI>\ref hello_world
    1.35 +    <LI>\ref compile_hw
    1.36 +  </UL>
    1.37 +  <LI>\ref basic_concepts
    1.38 +  <UL>
    1.39 +    <LI>\ref basic_ListGraph
    1.40 +    <LI>\ref maps1
    1.41 +  </UL>
    1.42 +  <LI><A href="#file">Lemon Graph File Format</A>
    1.43 +  <LI>\ref algorithms
    1.44 +  <UL>
    1.45 +    <LI><A href="#bfs_dfs">Bfs/Dfs</A>
    1.46 +    <LI><A href="#dijkstra">Dijkstra</A>
    1.47 +    <LI><A href="#kruskal">Kruskal</A>
    1.48 +  </UL>
    1.49 +  <LI>\ref maps2
    1.50 +  <UL>
    1.51 +    <LI>\ref custom_maps
    1.52 +    <LI><A href="#map_adaptors">Map Adaptors</A>
    1.53 +    <LI><A href="#special_maps">Special Purpose Maps</a>
    1.54 +  </UL>
    1.55 +  <LI><A href="#show">Show a graph</A>
    1.56 +  <LI><A href="#misc">Miscellaneous Tool</A>
    1.57 +  <UL>
    1.58 +    <LI><A href="#lp">LP solver</A>
    1.59 +    <LI><A href="#simann">Simulated Annealing</A>
    1.60 +  </UL>
    1.61 +</OL>
    1.62  
    1.63  \section intro Introduction
    1.64 -
    1.65 -\section get_start Getting Started
    1.66 -
    1.67 -  \subsection hello_world Hello World in LEMON
    1.68 -
    1.69 -  \subsection compile Compiling Hello World
    1.70 -
    1.71 -\section basic Basic concepts
    1.72 -
    1.73 -  \subsection list_graph ListGraph - a versatile directed graph
    1.74 -
    1.75 -  \subsection maps1 Maps I.
    1.76 -
    1.77 -\section file Lemon Graph File Format
    1.78 -
    1.79 -\section algos Algorithms
    1.80 -
    1.81 -  \subsection bfs_dfs Bfs/Dfs
    1.82 -
    1.83 -  \subsection dijkstra Dijkstra
    1.84 -
    1.85 -  \subsection kruskal Kruskal
    1.86 -
    1.87 -\section maps2 Maps II.
    1.88 -
    1.89 -  \subsection custom_maps Writing Custom ReadMap
    1.90 -
    1.91 -  \subsection map_adaptors Map Adaptors
    1.92 -
    1.93 -  \subsection spec_maps Special Purpose Maps
    1.94 -
    1.95 -\section show Show a graph
    1.96 -
    1.97 -\section misc Miscellaneous Tool
    1.98 -
    1.99 -  \subsection lp LP solver
   1.100 -
   1.101 -  \subsection simann Simulated Annealing
   1.102 -
   1.103 +In this tutorial we try to show you as many aspects of LEMON as possible. From
   1.104 +the basics to the very advanced or highly optimized tools. The given examples
   1.105 +are all available in \c demo directory, so feel free to look at them after the
   1.106 +sections.
   1.107  */