mainpage.dox
changeset 4 89f6fff82e93
parent 3 0cf8882c7e7c
child 7 934258c64b6b
     1.1 --- a/mainpage.dox	Sat Oct 11 13:13:09 2008 +0200
     1.2 +++ b/mainpage.dox	Thu Oct 23 14:05:55 2008 +0200
     1.3 @@ -22,75 +22,52 @@
     1.4  
     1.5  \section toc Table of Contents
     1.6  
     1.7 -<ol>
     1.8 -  <li>\ref intro "Introduction"</li>
     1.9 -  <li>\ref getting_started "Getting Started"</li>
    1.10 -  <ul>
    1.11 -    <li>\ref hello_lemon "Compile Your First Code"</li>
    1.12 -    <ul>
    1.13 -      <li>\ref hello_lemon_system "If LEMON is Installed System-Wide"</li>
    1.14 -      <li>\ref hello_lemon_user "If LEMON is Installed User-Local"</li>
    1.15 -      <ul>
    1.16 -        <li>\ref hello_lemon_pkg_config "Use pkg-config"</li>
    1.17 -      </ul>
    1.18 -    </ul>
    1.19 -  </ul>
    1.20 -  <li>\ref basic_concepts "Basic Concepts"</li>
    1.21 -  <ul>
    1.22 -    <li>\ref digraph_build "Build and Modify a Digraph"</li>
    1.23 -    <li>\ref digraph_iterate "Iterate Over the Elements"</li>
    1.24 -    <li>\ref standard_maps "Maps - Assign Data to Graphs"</li>
    1.25 -    <li>\ref algorithms "Algorithms"</li>
    1.26 -    <ul>
    1.27 -      <li>\ref alg_bfs_dfs "BFS, DFS - Graph Search"</li>
    1.28 -      <li>\ref alg_dijkstra "Dijkstra - Shorthest Path"</li>
    1.29 -      <li>\ref alg_kruskal "Kruskal - Minimum Spanning Tree"</li>
    1.30 -    </ul>
    1.31 -    <li>\ref undir_graphs "Undirected Graphs"</li>
    1.32 -  </ul>
    1.33 -  <li>\ref tools "Some Important Auxiliary Tools"</li>
    1.34 -  <ul>
    1.35 -    <li>\ref lgf "LEMON Graph Format"</li>
    1.36 -    <ul>
    1.37 -      <li>\ref glemon "gLemon - A Graph Editor for LEMON"</li>
    1.38 -    </ul>
    1.39 -    <li>\ref graph_to_eps "GraphToEps - Postscript Exporting"</li>
    1.40 -    <li>\ref time_count "Time Measuring and Counting"</li>
    1.41 -    <li>\ref random "Random Numbers"</li>
    1.42 -  </ul>
    1.43 -  <li>\ref advanced "Advanced Topics"</li>
    1.44 -  <ul>
    1.45 -    <li>\ref maps "Maps"</li>
    1.46 -    <ul>
    1.47 -      <li>\ref map_concepts "Read/Write/Reference Maps"</li>
    1.48 -      <li>\ref custom_maps "Custom Maps"</li>
    1.49 -      <li>\ref map_adaptors "Map Adaptors"</li>
    1.50 -      <li>\ref special_maps "Other Special Purpose Maps"</li>
    1.51 -    </ul>
    1.52 -    <li>\ref graphs "Graphs"</li>
    1.53 -    <ul>
    1.54 -      <li>\ref graph_adaptors "Graph Adaptors"</li>
    1.55 -      <li>\ref special_graphs "Special Graph Structures"</li>
    1.56 -    </ul>
    1.57 -    <li>\ref named_params "Named Parameters"</li>
    1.58 -    <ul>
    1.59 -      <li>\ref alg_named_params "Customizing Algorithms"</li>
    1.60 -    </ul>
    1.61 -  </ul>
    1.62 -  <li>\ref lp "LP and MIP Solvers"</li>
    1.63 -  <li>\ref appendix "Appendix"</li>
    1.64 -  <ul>
    1.65 -    <li>\ref install "Install LEMON"</li>
    1.66 -    <ul>
    1.67 -      <li>\ref install_system "Install System Wide"</li>
    1.68 -      <ul>
    1.69 -        <li>\ref install_system_source "From Source"</li>
    1.70 -        <li>\ref install_system_rpm "From rpm"</li>
    1.71 -      </ul>
    1.72 -      <li>\ref install_user "Install Locally to the User"</li>
    1.73 -    </ul>
    1.74 -  </ul>
    1.75 -</ol>
    1.76 + - \ref intro
    1.77 + - \ref getting_started
    1.78 +   - \ref requirements_lemon
    1.79 +     - \ref requirements_lp
    1.80 +   - \ref download_lemon
    1.81 +   - \ref install_lemon
    1.82 +   - \ref hg_checkout
    1.83 +   - \ref hg_compile
    1.84 +   - \ref hello_lemon
    1.85 +     - \ref hello_lemon_system
    1.86 +     - \ref hello_lemon_user
    1.87 + - \ref basic_concepts "Basic Concepts"
    1.88 +   - \ref digraph_build "Build and Modify a Digraph"
    1.89 +   - \ref digraph_iterate "Iterate Over the Elements"
    1.90 +   - \ref standard_maps "Maps - Assign Data to Graphs"
    1.91 +   - \ref algorithms "Algorithms"
    1.92 +     - \ref alg_bfs_dfs "BFS, DFS - Graph Search"
    1.93 +     - \ref alg_dijkstra "Dijkstra - Shorthest Path"
    1.94 +     - \ref alg_kruskal "Kruskal - Minimum Spanning Tree"
    1.95 +   - \ref undir_graphs "Undirected Graphs"
    1.96 + - \ref tools "Some Important Auxiliary Tools"
    1.97 +   - \ref lgf "LEMON Graph Format"
    1.98 +     - \ref glemon "gLemon - A Graph Editor for LEMON"
    1.99 +   - \ref graph_to_eps "GraphToEps - Postscript Exporting"
   1.100 +   - \ref time_count "Time Measuring and Counting"
   1.101 +   - \ref random "Random Numbers"
   1.102 + - \ref advanced "Advanced Topics"
   1.103 +   - \ref maps "Maps"
   1.104 +     - \ref map_concepts "Read/Write/Reference Maps"
   1.105 +     - \ref custom_maps "Custom Maps"
   1.106 +     - \ref map_adaptors "Map Adaptors"
   1.107 +     - \ref special_maps "Other Special Purpose Maps"
   1.108 +   - \ref graphs "Graphs"
   1.109 +     - \ref graph_adaptors "Graph Adaptors"
   1.110 +     - \ref special_graphs "Special Graph Structures"
   1.111 +   - \ref named_params "Named Parameters"
   1.112 +     - \ref alg_named_params "Customizing Algorithms"
   1.113 + - \ref lp "LP and MIP Solvers"
   1.114 +   - \ref lp_examples "Simple Examples"
   1.115 +   - \ref lp_maxflow "Maximum Flow as LP Problem"
   1.116 + - \ref appendix "Appendix"
   1.117 +   - \ref install "Install LEMON"
   1.118 +     - \ref install_system "Install System Wide"
   1.119 +       - \ref install_system_source "From Source"
   1.120 +       - \ref install_system_rpm "From rpm"
   1.121 +     - \ref install_user "Install Locally to the User"
   1.122  
   1.123  */
   1.124  }