Changes in / [12:d64ffbd7d8c6:11:0a51fe554d01] in lemon-tutorial
- Files:
-
- 2 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
.hgignore
r10 r1 16 16 ^html/.* 17 17 ^gen-images/.* 18 ^gen-dox/.* -
Doxyfile
r12 r11 71 71 SHOW_NAMESPACES = NO 72 72 FILE_VERSION_FILTER = 73 LAYOUT_FILE = ./DoxygenLayout.xml73 LAYOUT_FILE = DoxygenLayout.xml 74 74 #--------------------------------------------------------------------------- 75 75 # configuration options related to warning and progress messages … … 85 85 # configuration options related to the input files 86 86 #--------------------------------------------------------------------------- 87 INPUT = . /gen-dox\87 INPUT = . \ 88 88 ./demo 89 89 INPUT_ENCODING = UTF-8 -
Makefile
r10 r8 16 16 17 17 html: $(PNG_IMAGES) 18 -mkdir gen-dox19 ./titlegen.py20 18 doxygen Doxyfile 21 19 -
getting_started.dox
r12 r11 19 19 namespace lemon { 20 20 /** 21 [PAGE]hello_lemon[PAGE]Compile Your First Code21 \page hello_lemon Compile Your First Code 22 22 23 23 First of all you have to install LEMON on your system (see … … 55 55 Now let us compile this simple example program. 56 56 57 [SEC]hello_lemon_system[SEC]If LEMON is Installed System-Wide57 \section hello_lemon_system If LEMON is Installed System-Wide 58 58 59 59 If LEMON is installed system-wide (into directory \c /usr/local), … … 73 73 \endverbatim 74 74 75 [SEC]hello_lemon_user[SEC]If LEMON is Installed User-Local75 \section hello_lemon_user If LEMON is Installed User-Local 76 76 77 77 Compiling the code is a bit more difficult if you installed LEMON … … 117 117 <a href="mailto:lemon-user@lemon.cs.elte.hu"><b>contact us</b></a>. 118 118 119 [TRAILER]120 119 */ 121 120 } -
install.dox
r12 r11 18 18 19 19 /** 20 [PAGE]install[PAGE]Installation Guide20 \page install Installation Guide 21 21 22 22 In this section we detail how to start using LEMON, from downloading it … … 28 28 <a href="mailto:lemon-user@lemon.cs.elte.hu"><b>ask</b></a>. 29 29 30 [SEC]requirements_lemon[SEC]Hardware and Software Requirements30 \section requirements_lemon Hardware and Software Requirements 31 31 32 32 In LEMON we use C++ templates heavily, thus compilation takes a … … 47 47 the instructions detailed here to be able to use LEMON with your compiler. 48 48 49 [SEC]requirements_lp[SEC]LP Solver Requirements49 \subsection requirements_lp LP Solver Requirements 50 50 51 51 The LEMON LP solver interface can use the GLPK (GNU Linear Programming … … 54 54 See the <b><tt>INSTALL</tt></b> file how to enable these at compile time. 55 55 56 [SEC]install_from_source[SEC]Install from Source56 \section install_from_source Install from Source 57 57 58 58 You can download LEMON from the web site: … … 142 142 For more information see the <b><tt>INSTALL</tt></b> file. 143 143 144 [SEC]install_hg[SEC]Install the Latest Development Version144 \subsection install_hg Install the Latest Development Version 145 145 146 146 You can also use the latest (developer) version of LEMON from our Mercurial … … 187 187 188 188 189 [SEC]install_rpm[SEC]Install from rpm189 \section install_rpm Install from rpm 190 190 191 191 \todo Write this section (\ref install_rpm). 192 192 193 [SEC]install_user[SEC] Install Locally to the User 193 194 \section install_user Install Locally to the User 194 195 195 196 \todo Write this section (\ref install_user). 196 197 197 198 198 [SEC]compile_codes[SEC]Compile Codes that Use LEMON199 \section compile_codes Compile Codes that Use LEMON 199 200 200 201 Now let us see how to use the library after installing it. 201 202 202 [SEC]compile_system_wide[SEC]If LEMON is Installed System-Wide203 \subsection compile_system_wide If LEMON is Installed System-Wide 203 204 204 205 If your installation of LEMON into directory \c /usr/local was … … 213 214 installed library LEMON. 214 215 215 [SEC]compile_user_local[SEC]If LEMON is Installed User-Local216 \subsection compile_user_local If LEMON is Installed User-Local 216 217 217 218 You have to give more options to the compiler if LEMON is installed … … 225 226 \endverbatim 226 227 227 [SEC]compile_use_pkg_config[SEC]Use pkg-config228 \subsubsection compile_use_pkg_config Use pkg-config 228 229 229 230 \todo Write this sub-subsection (\ref compile_use_pkg_config). 230 231 231 [TRAILER]232 232 */ -
intro.dox
r10 r6 18 18 19 19 /** 20 [PAGE]intro[PAGE]Introduction20 \page intro Introduction 21 21 22 [SEC]intro_lemon[SEC]What is LEMON22 \section intro_lemon What is LEMON 23 23 24 24 <b>LEMON</b> stands for <b>L</b>ibrary of <b>E</b>fficient <b>M</b>odels and … … 43 43 <a href="http://lemon.cs.elte.hu/"><b>http://lemon.cs.elte.hu/</b></a>. 44 44 45 [SEC]intro_tutorial[SEC]LEMON Tutorial45 \section intro_tutorial LEMON Tutorial 46 46 47 47 This tutorial introduces the reader to the basic concepts and features of … … 53 53 as a reference manual). 54 54 55 56 [TRAILER]57 58 55 */ -
license.dox
r10 r3 19 19 /** 20 20 21 [PAGE]license[PAGE]License Terms21 \page license License Terms 22 22 23 23 \verbinclude ./LICENSE 24 24 25 [TRAILER]26 25 */ -
mainpage.dox
r10 r9 23 23 \section toc Table of Contents 24 24 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 26 67 27 68 */
Note: See TracChangeset
for help on using the changeset viewer.