COIN-OR::LEMON - Graph Library

Changeset 2195:f47faf6913ab in lemon-0.x


Ignore:
Timestamp:
09/04/06 21:48:09 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2920
Message:

Tutorial improvements by Mark (mqrelly)

Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • demo/Makefile.am

    r2147 r2195  
    1515        demo/min_route \
    1616        demo/hello_lemon \
     17        demo/hello_world \
     18        demo/maps_summary \
    1719        demo/sub_graph_adaptor_demo \
    1820        demo/descriptor_map_demo \
     
    4648demo_coloring_SOURCES = demo/coloring.cc
    4749
     50demo_maps_summary_SOURCES = demo/maps_summary.cc
     51
    4852demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
    4953
     
    5559
    5660demo_hello_lemon_SOURCES = demo/hello_lemon.cc
     61
     62demo_hello_world_SOURCES = demo/hello_world.cc
    5763
    5864demo_sub_graph_adaptor_demo_SOURCES = \
  • doc/tutorial.dox

    r2166 r2195  
    22\page Tutorial LEMON Tutorial
    33
    4 \section toc Table of Contents
     4<H2>Table of Contents</H2>
    55
    6 -# \ref intro
    7 -# \ref get_start
    8   - \ref hello_world
    9   - \ref compile
    10 -# \ref basic
    11   - \ref list_graph
    12   - \ref maps1
    13 -# \ref file
    14 -# \ref algos
    15   - \ref bfs_dfs
    16   - \ref dijkstra
    17   - \ref kruskal
    18 -# \ref maps2
    19   - \ref custom_maps
    20   - \ref map_adaptors
    21   - \ref spec_maps
    22 -# \ref show
    23 -# \ref misc
    24   - \ref lp
    25   - \ref simann
     6<OL style="padding-bottom: 60px">
     7  <LI>\ref intro
     8  <LI>\ref getting_started
     9  <UL>
     10    <LI>\ref hello_world
     11    <LI>\ref compile_hw
     12  </UL>
     13  <LI>\ref basic_concepts
     14  <UL>
     15    <LI>\ref basic_ListGraph
     16    <LI>\ref maps1
     17  </UL>
     18  <LI><A href="#file">Lemon Graph File Format</A>
     19  <LI>\ref algorithms
     20  <UL>
     21    <LI><A href="#bfs_dfs">Bfs/Dfs</A>
     22    <LI><A href="#dijkstra">Dijkstra</A>
     23    <LI><A href="#kruskal">Kruskal</A>
     24  </UL>
     25  <LI>\ref maps2
     26  <UL>
     27    <LI>\ref custom_maps
     28    <LI><A href="#map_adaptors">Map Adaptors</A>
     29    <LI><A href="#special_maps">Special Purpose Maps</a>
     30  </UL>
     31  <LI><A href="#show">Show a graph</A>
     32  <LI><A href="#misc">Miscellaneous Tool</A>
     33  <UL>
     34    <LI><A href="#lp">LP solver</A>
     35    <LI><A href="#simann">Simulated Annealing</A>
     36  </UL>
     37</OL>
    2638
    2739\section intro Introduction
    28 
    29 \section get_start Getting Started
    30 
    31   \subsection hello_world Hello World in LEMON
    32 
    33   \subsection compile Compiling Hello World
    34 
    35 \section basic Basic concepts
    36 
    37   \subsection list_graph ListGraph - a versatile directed graph
    38 
    39   \subsection maps1 Maps I.
    40 
    41 \section file Lemon Graph File Format
    42 
    43 \section algos Algorithms
    44 
    45   \subsection bfs_dfs Bfs/Dfs
    46 
    47   \subsection dijkstra Dijkstra
    48 
    49   \subsection kruskal Kruskal
    50 
    51 \section maps2 Maps II.
    52 
    53   \subsection custom_maps Writing Custom ReadMap
    54 
    55   \subsection map_adaptors Map Adaptors
    56 
    57   \subsection spec_maps Special Purpose Maps
    58 
    59 \section show Show a graph
    60 
    61 \section misc Miscellaneous Tool
    62 
    63   \subsection lp LP solver
    64 
    65   \subsection simann Simulated Annealing
    66 
     40In this tutorial we try to show you as many aspects of LEMON as possible. From
     41the basics to the very advanced or highly optimized tools. The given examples
     42are all available in \c demo directory, so feel free to look at them after the
     43sections.
    6744*/
Note: See TracChangeset for help on using the changeset viewer.