mainpage.dox
author Alpar Juttner <alpar@cs.elte.hu>
Fri, 24 Oct 2008 13:26:15 +0100
changeset 7 934258c64b6b
parent 4 89f6fff82e93
child 9 a48bf0d3a790
permissions -rw-r--r--
Rework installation part and move it to the appendix
     1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library.
     4  *
     5  * Copyright (C) 2003-2008
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 namespace lemon {
    20 /**
    21 \mainpage LEMON Tutorial
    22 
    23 \section toc Table of Contents
    24 
    25  - \ref intro
    26  - \ref getting_started
    27    - \ref hello_lemon
    28  - \ref basic_concepts "Basic Concepts"
    29    - \ref digraph_build "Build and Modify a Digraph"
    30    - \ref digraph_iterate "Iterate Over the Elements"
    31    - \ref standard_maps "Maps - Assign Data to Graphs"
    32    - \ref algorithms "Algorithms"
    33      - \ref alg_bfs_dfs "BFS, DFS - Graph Search"
    34      - \ref alg_dijkstra "Dijkstra - Shorthest Path"
    35      - \ref alg_kruskal "Kruskal - Minimum Spanning Tree"
    36    - \ref undir_graphs "Undirected Graphs"
    37  - \ref tools "Some Important Auxiliary Tools"
    38    - \ref lgf "LEMON Graph Format"
    39      - \ref glemon "gLemon - A Graph Editor for LEMON"
    40    - \ref graph_to_eps "GraphToEps - Postscript Exporting"
    41    - \ref time_count "Time Measuring and Counting"
    42    - \ref random "Random Numbers"
    43  - \ref advanced "Advanced Topics"
    44    - \ref maps "Maps"
    45      - \ref map_concepts "Read/Write/Reference Maps"
    46      - \ref custom_maps "Custom Maps"
    47      - \ref map_adaptors "Map Adaptors"
    48      - \ref special_maps "Other Special Purpose Maps"
    49    - \ref graphs "Graphs"
    50      - \ref graph_adaptors "Graph Adaptors"
    51      - \ref special_graphs "Special Graph Structures"
    52    - \ref named_params "Named Parameters"
    53      - \ref alg_named_params "Customizing Algorithms"
    54  - \ref lp "LP and MIP Solvers"
    55    - \ref lp_examples "Simple Examples"
    56    - \ref lp_maxflow "Maximum Flow as LP Problem"
    57  - \ref appendix "Appendix"
    58    - \ref install
    59      - \ref requirements_lemon
    60        - \ref requirements_lp
    61      - \ref install_from_source
    62      - \ref install_system_rpm "From rpm"
    63      - \ref install_user "Install Locally to the User"
    64 
    65 */
    66 }