COIN-OR::LEMON - Graph Library

Changeset 10:55e2f7712e87 in lemon-tutorial


Ignore:
Timestamp:
10/30/08 18:13:33 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

TOC and section numbering are generated from toc.txt

Files:
2 added
8 edited

Legend:

Unmodified
Added
Removed
  • .hgignore

    r1 r10  
    1616^html/.*
    1717^gen-images/.*
     18^gen-dox/.*
  • Doxyfile

    r8 r10  
    7171SHOW_NAMESPACES        = NO
    7272FILE_VERSION_FILTER    =
    73 LAYOUT_FILE            = DoxygenLayout.xml
     73LAYOUT_FILE            = ./DoxygenLayout.xml
    7474#---------------------------------------------------------------------------
    7575# configuration options related to warning and progress messages
     
    8585# configuration options related to the input files
    8686#---------------------------------------------------------------------------
    87 INPUT                  = . \
     87INPUT                  = ./gen-dox \
    8888                         ./demo
    8989INPUT_ENCODING         = UTF-8
  • Makefile

    r8 r10  
    1616
    1717html: $(PNG_IMAGES)
     18        -mkdir gen-dox
     19        ./titlegen.py
    1820        doxygen Doxyfile
    1921
  • getting_started.dox

    r9 r10  
    1818
    1919/**
    20 \page hello_lemon Compile Your First Code
     20[PAGE]hello_lemon[PAGE] Compile Your First Code
    2121
    2222If you have installed LEMON on your system you can paste the following
     
    5353Now let us compile this simple example program.
    5454
    55 \section hello_lemon_system If LEMON is Installed System-Wide
     55[SEC]hello_lemon_system[SEC] If LEMON is Installed System-Wide
    5656
    5757If LEMON is installed system-wide (into directory \c /usr/local),
     
    7171\endverbatim
    7272
    73 \section hello_lemon_user If LEMON is Installed User-Local
     73[SEC]hello_lemon_user[SEC] If LEMON is Installed User-Local
    7474
    7575Compiling the code is a bit more difficult if you installed LEMON
     
    115115<a href="mailto:lemon-user@lemon.cs.elte.hu"><b>contact us</b></a>.
    116116
     117[TRAILER]
    117118*/
  • install.dox

    r9 r10  
    1818
    1919/**
    20 \page install Installation Guide
     20[PAGE]install[PAGE] Installation Guide
    2121
    2222In this section we detail how to start using LEMON, from downloading it
     
    2828<a href="mailto:lemon-user@lemon.cs.elte.hu"><b>ask</b></a>.
    2929
    30 \section requirements_lemon Hardware and Software Requirements
     30[SEC]requirements_lemon[SEC] Hardware and Software Requirements
    3131
    3232In LEMON we use C++ templates heavily, thus compilation takes a
     
    4747the instructions detailed here to be able to use LEMON with your compiler.
    4848
    49 \subsection requirements_lp LP Solver Requirements
     49[SEC]requirements_lp[SEC] LP Solver Requirements
    5050
    5151The LEMON LP solver interface can use the GLPK (GNU Linear Programming
     
    5454See the <b><tt>INSTALL</tt></b> file how to enable these at compile time.
    5555
    56 \section install_from_source Install from Source
     56[SEC]install_from_source[SEC] Install from Source
    5757
    5858You can download LEMON from the web site:
     
    142142For more information see the <b><tt>INSTALL</tt></b> file.
    143143
    144 \subsection install_hg Install the Latest Development Version
     144[SEC]install_hg[SEC] Install the Latest Development Version
    145145
    146146You can also use the latest (developer) version of LEMON from our Mercurial
     
    187187
    188188
    189 \section install_rpm Install from rpm
     189[SEC]install_rpm[SEC] Install from rpm
    190190
    191191\todo Write this section (\ref install_rpm).
    192192
    193 
    194 \section install_user Install Locally to the User
     193[SEC]install_user[SEC] Install Locally to the User
    195194
    196195\todo Write this section (\ref install_user).
    197196
    198197
    199 \section compile_codes Compile Codes that Use LEMON
     198[SEC]compile_codes[SEC] Compile Codes that Use LEMON
    200199
    201200Now let us see how to use the library after installing it.
    202201
    203 \subsection compile_system_wide If LEMON is Installed System-Wide
     202[SEC]compile_system_wide[SEC] If LEMON is Installed System-Wide
    204203
    205204If your installation of LEMON into directory \c /usr/local was
     
    214213installed library LEMON.
    215214
    216 \subsection compile_user_local If LEMON is Installed User-Local
     215[SEC]compile_user_local[SEC] If LEMON is Installed User-Local
    217216
    218217You have to give more options to the compiler if LEMON is installed
     
    226225\endverbatim
    227226
    228 \subsubsection compile_use_pkg_config Use pkg-config
     227[SEC]compile_use_pkg_config[SEC] Use pkg-config
    229228
    230229\todo Write this sub-subsection (\ref compile_use_pkg_config).
    231230
     231[TRAILER]
    232232*/
  • intro.dox

    r6 r10  
    1818
    1919/**
    20 \page intro Introduction
     20[PAGE]intro[PAGE] Introduction
    2121
    22 \section intro_lemon What is LEMON
     22[SEC]intro_lemon[SEC] What is LEMON
    2323
    2424<b>LEMON</b> stands for <b>L</b>ibrary of <b>E</b>fficient <b>M</b>odels and
     
    4343<a href="http://lemon.cs.elte.hu/"><b>http://lemon.cs.elte.hu/</b></a>.
    4444
    45 \section intro_tutorial LEMON Tutorial
     45[SEC]intro_tutorial[SEC] LEMON Tutorial
    4646
    4747This tutorial introduces the reader to the basic concepts and features of
     
    5353as a reference manual).
    5454
     55
     56[TRAILER]
     57
    5558*/
  • license.dox

    r3 r10  
    1919/**
    2020
    21 \page license License Terms
     21[PAGE]license[PAGE] License Terms
    2222
    2323\verbinclude ./LICENSE
    2424
     25[TRAILER]
    2526*/
  • mainpage.dox

    r9 r10  
    2323\section toc Table of Contents
    2424
    25  - \ref intro
    26  - \ref basic_concepts "Basic Concepts"
    27    - \ref hello_lemon
    28    - \ref digraph_build "Build and Modify a Digraph"
    29    - \ref digraph_iterate "Iterate Over the Elements"
    30    - \ref standard_maps "Maps - Assign Data to Graphs"
    31    - \ref algorithms "Algorithms"
    32      - \ref alg_bfs_dfs "BFS, DFS - Graph Search"
    33      - \ref alg_dijkstra "Dijkstra - Shorthest Path"
    34      - \ref alg_kruskal "Kruskal - Minimum Spanning Tree"
    35    - \ref undir_graphs "Undirected Graphs"
    36  - \ref tools "Some Important Auxiliary Tools"
    37    - \ref lgf "LEMON Graph Format"
    38      - \ref glemon "gLemon - A Graph Editor for LEMON"
    39    - \ref graph_to_eps "GraphToEps - Postscript Exporting"
    40    - \ref time_count "Time Measuring and Counting"
    41    - \ref random "Random Numbers"
    42  - \ref advanced "Advanced Topics"
    43    - \ref maps "Maps"
    44      - \ref map_concepts "Read/Write/Reference Maps"
    45      - \ref custom_maps "Custom Maps"
    46      - \ref map_adaptors "Map Adaptors"
    47      - \ref special_maps "Other Special Purpose Maps"
    48    - \ref graphs "Graphs"
    49      - \ref graph_adaptors "Graph Adaptors"
    50      - \ref special_graphs "Special Graph Structures"
    51    - \ref named_params "Named Parameters"
    52      - \ref alg_named_params "Customizing Algorithms"
    53  - \ref lp "LP and MIP Solvers"
    54    - \ref lp_examples "Simple Examples"
    55    - \ref lp_maxflow "Maximum Flow as LP Problem"
    56  - \ref appendix "Appendix"
    57    - \ref install
    58      - \ref requirements_lemon
    59        - \ref requirements_lp
    60      - \ref install_from_source
    61        - \ref install_hg
    62      - \ref install_rpm
    63      - \ref install_user
    64      - \ref compile_codes
    65        - \ref compile_system_wide
    66        - \ref compile_user_local
     25[TOC]
    6726
    6827*/
Note: See TracChangeset for help on using the changeset viewer.