Changeset 10:55e2f7712e87 in lemon-tutorial
- Timestamp:
- 10/30/08 18:13:33 (16 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
.hgignore
r1 r10 16 16 ^html/.* 17 17 ^gen-images/.* 18 ^gen-dox/.* -
Doxyfile
r8 r10 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 = . \87 INPUT = ./gen-dox \ 88 88 ./demo 89 89 INPUT_ENCODING = UTF-8 -
Makefile
r8 r10 16 16 17 17 html: $(PNG_IMAGES) 18 -mkdir gen-dox 19 ./titlegen.py 18 20 doxygen Doxyfile 19 21 -
getting_started.dox
r9 r10 18 18 19 19 /** 20 \page hello_lemonCompile Your First Code20 [PAGE]hello_lemon[PAGE] Compile Your First Code 21 21 22 22 If you have installed LEMON on your system you can paste the following … … 53 53 Now let us compile this simple example program. 54 54 55 \section hello_lemon_systemIf LEMON is Installed System-Wide55 [SEC]hello_lemon_system[SEC] If LEMON is Installed System-Wide 56 56 57 57 If LEMON is installed system-wide (into directory \c /usr/local), … … 71 71 \endverbatim 72 72 73 \section hello_lemon_userIf LEMON is Installed User-Local73 [SEC]hello_lemon_user[SEC] If LEMON is Installed User-Local 74 74 75 75 Compiling the code is a bit more difficult if you installed LEMON … … 115 115 <a href="mailto:lemon-user@lemon.cs.elte.hu"><b>contact us</b></a>. 116 116 117 [TRAILER] 117 118 */ -
install.dox
r9 r10 18 18 19 19 /** 20 \page installInstallation Guide20 [PAGE]install[PAGE] 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 \section requirements_lemonHardware and Software Requirements30 [SEC]requirements_lemon[SEC] 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 \subsection requirements_lpLP Solver Requirements49 [SEC]requirements_lp[SEC] 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 \section install_from_sourceInstall from Source56 [SEC]install_from_source[SEC] 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 \subsection install_hgInstall the Latest Development Version144 [SEC]install_hg[SEC] 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 \section install_rpmInstall from rpm189 [SEC]install_rpm[SEC] Install from rpm 190 190 191 191 \todo Write this section (\ref install_rpm). 192 192 193 194 \section install_user Install Locally to the User 193 [SEC]install_user[SEC] Install Locally to the User 195 194 196 195 \todo Write this section (\ref install_user). 197 196 198 197 199 \section compile_codesCompile Codes that Use LEMON198 [SEC]compile_codes[SEC] Compile Codes that Use LEMON 200 199 201 200 Now let us see how to use the library after installing it. 202 201 203 \subsection compile_system_wideIf LEMON is Installed System-Wide202 [SEC]compile_system_wide[SEC] If LEMON is Installed System-Wide 204 203 205 204 If your installation of LEMON into directory \c /usr/local was … … 214 213 installed library LEMON. 215 214 216 \subsection compile_user_localIf LEMON is Installed User-Local215 [SEC]compile_user_local[SEC] If LEMON is Installed User-Local 217 216 218 217 You have to give more options to the compiler if LEMON is installed … … 226 225 \endverbatim 227 226 228 \subsubsection compile_use_pkg_configUse pkg-config227 [SEC]compile_use_pkg_config[SEC] Use pkg-config 229 228 230 229 \todo Write this sub-subsection (\ref compile_use_pkg_config). 231 230 231 [TRAILER] 232 232 */ -
intro.dox
r6 r10 18 18 19 19 /** 20 \page introIntroduction20 [PAGE]intro[PAGE] Introduction 21 21 22 \section intro_lemonWhat is LEMON22 [SEC]intro_lemon[SEC] 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 \section intro_tutorialLEMON Tutorial45 [SEC]intro_tutorial[SEC] 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 55 58 */ -
license.dox
r3 r10 19 19 /** 20 20 21 \page licenseLicense Terms21 [PAGE]license[PAGE] License Terms 22 22 23 23 \verbinclude ./LICENSE 24 24 25 [TRAILER] 25 26 */ -
mainpage.dox
r9 r10 23 23 \section toc Table of Contents 24 24 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 25 [TOC] 67 26 68 27 */
Note: See TracChangeset
for help on using the changeset viewer.