mainpage.dox
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 23 Oct 2008 14:05:55 +0200
changeset 4 89f6fff82e93
parent 3 0cf8882c7e7c
child 7 934258c64b6b
permissions -rw-r--r--
More simple mainpage + using layout file
     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 requirements_lemon
    28      - \ref requirements_lp
    29    - \ref download_lemon
    30    - \ref install_lemon
    31    - \ref hg_checkout
    32    - \ref hg_compile
    33    - \ref hello_lemon
    34      - \ref hello_lemon_system
    35      - \ref hello_lemon_user
    36  - \ref basic_concepts "Basic Concepts"
    37    - \ref digraph_build "Build and Modify a Digraph"
    38    - \ref digraph_iterate "Iterate Over the Elements"
    39    - \ref standard_maps "Maps - Assign Data to Graphs"
    40    - \ref algorithms "Algorithms"
    41      - \ref alg_bfs_dfs "BFS, DFS - Graph Search"
    42      - \ref alg_dijkstra "Dijkstra - Shorthest Path"
    43      - \ref alg_kruskal "Kruskal - Minimum Spanning Tree"
    44    - \ref undir_graphs "Undirected Graphs"
    45  - \ref tools "Some Important Auxiliary Tools"
    46    - \ref lgf "LEMON Graph Format"
    47      - \ref glemon "gLemon - A Graph Editor for LEMON"
    48    - \ref graph_to_eps "GraphToEps - Postscript Exporting"
    49    - \ref time_count "Time Measuring and Counting"
    50    - \ref random "Random Numbers"
    51  - \ref advanced "Advanced Topics"
    52    - \ref maps "Maps"
    53      - \ref map_concepts "Read/Write/Reference Maps"
    54      - \ref custom_maps "Custom Maps"
    55      - \ref map_adaptors "Map Adaptors"
    56      - \ref special_maps "Other Special Purpose Maps"
    57    - \ref graphs "Graphs"
    58      - \ref graph_adaptors "Graph Adaptors"
    59      - \ref special_graphs "Special Graph Structures"
    60    - \ref named_params "Named Parameters"
    61      - \ref alg_named_params "Customizing Algorithms"
    62  - \ref lp "LP and MIP Solvers"
    63    - \ref lp_examples "Simple Examples"
    64    - \ref lp_maxflow "Maximum Flow as LP Problem"
    65  - \ref appendix "Appendix"
    66    - \ref install "Install LEMON"
    67      - \ref install_system "Install System Wide"
    68        - \ref install_system_source "From Source"
    69        - \ref install_system_rpm "From rpm"
    70      - \ref install_user "Install Locally to the User"
    71 
    72 */
    73 }