COIN-OR::LEMON - Graph Library

source: lemon-tutorial/mainpage.dox @ 7:934258c64b6b

Last change on this file since 7:934258c64b6b was 7:934258c64b6b, checked in by Alpar Juttner <alpar@…>, 15 years ago

Rework installation part and move it to the appendix

File size: 2.3 KB
Line 
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
19namespace 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}
Note: See TracBrowser for help on using the repository browser.