Changeset 26:a40eafb6066d in lemon-tutorial
- Timestamp:
- 02/14/10 21:32:19 (15 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
basics.dox
r21 r26 19 19 namespace lemon { 20 20 /** 21 [PAGE] basics[PAGE] Basic Concepts21 [PAGE]sec_basics[PAGE] Basic Concepts 22 22 23 23 Throughout the document we are working with the \ref lemon namespace. … … 30 30 directive is added to the code at the beginning. 31 31 32 [SEC] digraphs[SEC] Directed Graphs32 [SEC]sec_digraphs[SEC] Directed Graphs 33 33 34 34 This section tells you how to work with a directed graph. We use ListDigraph, … … 73 73 \endcode 74 74 75 [SEC]digraphs_it[SEC] Iterators 75 76 [SEC]sec_digraph_it[SEC] Iterators 76 77 77 78 Now assume you want to list the elements of the graph. For this purpose the … … 143 144 \endcode 144 145 145 [SEC]maps[SEC] Maps 146 147 [SEC]sec_digraph_maps[SEC] Maps 146 148 147 149 The concept of "Maps" is another fundamental part of LEMON. They allow assigning -
getting_started.dox
r25 r26 19 19 namespace lemon { 20 20 /** 21 [PAGE] hello_lemon[PAGE] Compile Your First Code21 [PAGE]sec_hello_lemon[PAGE] Compile Your First Code 22 22 23 23 First of all, you have to install LEMON on your system (see the -
intro.dox
r25 r26 18 18 19 19 /** 20 [PAGE] intro[PAGE] Introduction20 [PAGE]sec_intro[PAGE] Introduction 21 21 22 [SEC] intro_lemon[SEC] What is LEMON22 [SEC]sec_intro_lemon[SEC] What is LEMON 23 23 24 24 <b>LEMON</b> stands for <b>L</b>ibrary for <b>E</b>fficient <b>M</b>odeling and … … 44 44 <a href="http://lemon.cs.elte.hu/"><b>http://lemon.cs.elte.hu/</b></a>. 45 45 46 [SEC] intro_tutorial[SEC] LEMON Tutorial46 [SEC]sec_intro_tutorial[SEC] LEMON Tutorial 47 47 48 48 This tutorial introduces the reader to the basic concepts and features of -
license.dox
r20 r26 19 19 /** 20 20 21 [PAGE] license[PAGE] License Terms21 [PAGE]sec_license[PAGE] License Terms 22 22 23 23 \verbinclude ./LICENSE -
mainpage.dox
r20 r26 21 21 \mainpage LEMON Tutorial 22 22 23 \section toc Table of Contents23 \section sec_toc Table of Contents 24 24 25 25 [TOC] -
scripts/titlegen.py
r17 r26 67 67 else: 68 68 next_str='' 69 fo.write('%s| \\ref toc "Home" |%s\n'%\69 fo.write('%s| \\ref sec_toc "Home" |%s\n'%\ 70 70 (prev_str,next_str)) 71 71 elif gr[3]: -
toc.txt
r21 r26 1 * intro 2 ** intro_lemon 3 ** intro_tutorial 4 * hello_lemon 5 * basics 6 ** digraphs 7 *** digraphs_it 8 *** maps 9 *_digraph_build 10 *_digraph_iterate 11 *_standard_maps 12 *_algorithms 13 **_alg_bfs_dfs 14 **_alg_dijkstra 15 **_alg_kruskal 16 *_undir_graphs 17 *_tools 18 **_lgf 19 **_glemon 20 **_graph_to_eps 21 **_time_count 22 **_random 23 * license 1 * sec_intro 2 ** sec_intro_lemon 3 ** sec_intro_tutorial 4 * sec_hello_lemon 5 * sec_basics 6 ** sec_digraphs 7 *** sec_digraph_it 8 *** sec_digraph_maps 9 *_sec_algorithms 10 **_sec_alg_graph_search 11 **_sec_alg_shortest_paths 12 **_sec_alg_spanning_tree 13 **_sec_alg_max_flow 14 *_sec_undir_graphs 15 *_sec_tools 16 **_sec_lgf 17 **_sec_time_count 18 **_sec_random 19 **_sec_graph_to_eps 20 **_sec_glemon 21 * sec_license
Note: See TracChangeset
for help on using the changeset viewer.