COIN-OR::LEMON - Graph Library

Changes in / [12:d64ffbd7d8c6:11:0a51fe554d01] in lemon-tutorial


Ignore:
Files:
2 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • .hgignore

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

    r12 r11  
    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                  = ./gen-dox \
     87INPUT                  = . \
    8888                         ./demo
    8989INPUT_ENCODING         = UTF-8
  • Makefile

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

    r12 r11  
    1919namespace lemon {
    2020/**
    21 [PAGE]hello_lemon[PAGE] Compile Your First Code
     21\page hello_lemon Compile Your First Code
    2222
    2323First of all you have to install LEMON on your system (see
     
    5555Now let us compile this simple example program.
    5656
    57 [SEC]hello_lemon_system[SEC] If LEMON is Installed System-Wide
     57\section hello_lemon_system If LEMON is Installed System-Wide
    5858
    5959If LEMON is installed system-wide (into directory \c /usr/local),
     
    7373\endverbatim
    7474
    75 [SEC]hello_lemon_user[SEC] If LEMON is Installed User-Local
     75\section hello_lemon_user If LEMON is Installed User-Local
    7676
    7777Compiling the code is a bit more difficult if you installed LEMON
     
    117117<a href="mailto:lemon-user@lemon.cs.elte.hu"><b>contact us</b></a>.
    118118
    119 [TRAILER]
    120119*/
    121120}
  • install.dox

    r12 r11  
    1818
    1919/**
    20 [PAGE]install[PAGE] Installation Guide
     20\page install 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 [SEC]requirements_lemon[SEC] Hardware and Software Requirements
     30\section requirements_lemon 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 [SEC]requirements_lp[SEC] LP Solver Requirements
     49\subsection requirements_lp 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 [SEC]install_from_source[SEC] Install from Source
     56\section install_from_source 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 [SEC]install_hg[SEC] Install the Latest Development Version
     144\subsection install_hg Install the Latest Development Version
    145145
    146146You can also use the latest (developer) version of LEMON from our Mercurial
     
    187187
    188188
    189 [SEC]install_rpm[SEC] Install from rpm
     189\section install_rpm Install from rpm
    190190
    191191\todo Write this section (\ref install_rpm).
    192192
    193 [SEC]install_user[SEC] Install Locally to the User
     193
     194\section install_user Install Locally to the User
    194195
    195196\todo Write this section (\ref install_user).
    196197
    197198
    198 [SEC]compile_codes[SEC] Compile Codes that Use LEMON
     199\section compile_codes Compile Codes that Use LEMON
    199200
    200201Now let us see how to use the library after installing it.
    201202
    202 [SEC]compile_system_wide[SEC] If LEMON is Installed System-Wide
     203\subsection compile_system_wide If LEMON is Installed System-Wide
    203204
    204205If your installation of LEMON into directory \c /usr/local was
     
    213214installed library LEMON.
    214215
    215 [SEC]compile_user_local[SEC] If LEMON is Installed User-Local
     216\subsection compile_user_local If LEMON is Installed User-Local
    216217
    217218You have to give more options to the compiler if LEMON is installed
     
    225226\endverbatim
    226227
    227 [SEC]compile_use_pkg_config[SEC] Use pkg-config
     228\subsubsection compile_use_pkg_config Use pkg-config
    228229
    229230\todo Write this sub-subsection (\ref compile_use_pkg_config).
    230231
    231 [TRAILER]
    232232*/
  • intro.dox

    r10 r6  
    1818
    1919/**
    20 [PAGE]intro[PAGE] Introduction
     20\page intro Introduction
    2121
    22 [SEC]intro_lemon[SEC] What is LEMON
     22\section intro_lemon 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 [SEC]intro_tutorial[SEC] LEMON Tutorial
     45\section intro_tutorial LEMON Tutorial
    4646
    4747This tutorial introduces the reader to the basic concepts and features of
     
    5353as a reference manual).
    5454
    55 
    56 [TRAILER]
    57 
    5855*/
  • license.dox

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

    r10 r9  
    2323\section toc Table of Contents
    2424
    25 [TOC]
     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
    2667
    2768*/
Note: See TracChangeset for help on using the changeset viewer.