Changeset 2195:f47faf6913ab in lemon-0.x for doc/tutorial.dox
- Timestamp:
- 09/04/06 21:48:09 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2920
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/tutorial.dox
r2166 r2195 2 2 \page Tutorial LEMON Tutorial 3 3 4 \section toc Table of Contents 4 <H2>Table of Contents</H2> 5 5 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> 26 38 27 39 \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 40 In this tutorial we try to show you as many aspects of LEMON as possible. From 41 the basics to the very advanced or highly optimized tools. The given examples 42 are all available in \c demo directory, so feel free to look at them after the 43 sections. 67 44 */
Note: See TracChangeset
for help on using the changeset viewer.