Changeset 12:d64ffbd7d8c6 in lemon-tutorial
- Timestamp:
- 10/31/08 22:00:25 (16 years ago)
- Branch:
- default
- Parents:
- 10:55e2f7712e87 (diff), 11:0a51fe554d01 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Doxyfile
r10 r12 219 219 # Configuration::additions related to external references 220 220 #--------------------------------------------------------------------------- 221 TAGFILES = "./ doc/libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3" \221 TAGFILES = "./libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3" \ 222 222 "./lemon.tag = http://lemon.cs.elte.hu/pub/doc/1.0" 223 223 GENERATE_TAGFILE = -
Doxyfile
r11 r12 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 -
getting_started.dox
r10 r12 17 17 */ 18 18 19 namespace lemon { 19 20 /** 20 21 [PAGE]hello_lemon[PAGE] Compile Your First Code 21 22 22 If you have installed LEMON on your system you can paste the following 23 code segment into a file called <tt>hello_lemon.cc</tt> to have a first 24 working program that uses LEMON. 23 First of all you have to install LEMON on your system (see 24 \ref install for instructions). 25 After that you can paste the following code segment into a file 26 <tt>hello_lemon.cc</tt> to have a first working program that uses LEMON. 25 27 26 28 \dontinclude hello_lemon.cc … … 117 119 [TRAILER] 118 120 */ 121 } -
getting_started.dox
r11 r12 19 19 namespace lemon { 20 20 /** 21 \page hello_lemonCompile Your First Code21 [PAGE]hello_lemon[PAGE] 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 \section hello_lemon_systemIf LEMON is Installed System-Wide57 [SEC]hello_lemon_system[SEC] 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 \section hello_lemon_userIf LEMON is Installed User-Local75 [SEC]hello_lemon_user[SEC] 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] 119 120 */ 120 121 } -
install.dox
r10 r12 62 62 If you want a developer version (for example you want to contribute in 63 63 developing LEMON) then you might want to use our Mercurial repository. 64 This case is detailed \ref hg_checkout"later", so from now on we64 This case is detailed \ref install_hg "later", so from now on we 65 65 suppose that you downloaded a <tt>.tar.gz</tt> file. 66 66 … … 216 216 217 217 You have to give more options to the compiler if LEMON is installed 218 user-local into a directory (denoted by <tt> <dir></tt>)218 user-local into a directory (denoted by <tt><dir></tt>) 219 219 or if you just skipped the step <tt>make install</tt>. 220 In the later case <tt> <dir></tt> denotes the directory in which the220 In the later case <tt><dir></tt> denotes the directory in which the 221 221 the \c make command have been performed. 222 222 -
install.dox
r11 r12 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 */
Note: See TracChangeset
for help on using the changeset viewer.