1 /** |
1 /** |
2 \page Tutorial LEMON Tutorial |
2 \page Tutorial LEMON Tutorial |
3 |
3 |
4 \section toc Table of Contents |
4 <H2>Table of Contents</H2> |
5 |
5 |
6 -# \ref intro |
6 <OL style="padding-bottom: 60px"> |
7 -# \ref get_start |
7 <LI>\ref intro |
8 - \ref hello_world |
8 <LI>\ref getting_started |
9 - \ref compile |
9 <UL> |
10 -# \ref basic |
10 <LI>\ref hello_world |
11 - \ref list_graph |
11 <LI>\ref compile_hw |
12 - \ref maps1 |
12 </UL> |
13 -# \ref file |
13 <LI>\ref basic_concepts |
14 -# \ref algos |
14 <UL> |
15 - \ref bfs_dfs |
15 <LI>\ref basic_ListGraph |
16 - \ref dijkstra |
16 <LI>\ref maps1 |
17 - \ref kruskal |
17 </UL> |
18 -# \ref maps2 |
18 <LI><A href="#file">Lemon Graph File Format</A> |
19 - \ref custom_maps |
19 <LI>\ref algorithms |
20 - \ref map_adaptors |
20 <UL> |
21 - \ref spec_maps |
21 <LI><A href="#bfs_dfs">Bfs/Dfs</A> |
22 -# \ref show |
22 <LI><A href="#dijkstra">Dijkstra</A> |
23 -# \ref misc |
23 <LI><A href="#kruskal">Kruskal</A> |
24 - \ref lp |
24 </UL> |
25 - \ref simann |
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 \section intro Introduction |
39 \section intro Introduction |
28 |
40 In this tutorial we try to show you as many aspects of LEMON as possible. From |
29 \section get_start Getting Started |
41 the basics to the very advanced or highly optimized tools. The given examples |
30 |
42 are all available in \c demo directory, so feel free to look at them after the |
31 \subsection hello_world Hello World in LEMON |
43 sections. |
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 |
|
67 */ |
44 */ |