doc/getstart.dox
author ladanyi
Tue, 01 Aug 2006 10:26:15 +0000
changeset 2166 c67e8b928a95
parent 2097 6b2903440d2b
child 2167 7e109b222053
permissions -rw-r--r--
More "doxygenish" syntax.
athos@1173
     1
/**
athos@1173
     2
\page getstart How to start using LEMON
athos@1173
     3
klao@1519
     4
In this page we detail how to start using LEMON, from downloading it to
klao@1519
     5
your computer, through the steps of installation, to showing a simple
klao@1519
     6
"Hello World" type program that already uses LEMON. We assume that you
klao@1519
     7
have a basic knowledge of your operating system and \c C++ programming
klao@1519
     8
language. The procedure is pretty straightforward, but if you have any
klao@1519
     9
difficulties don't hesitate to
klao@1519
    10
<a href="http://lemon.cs.elte.hu/mailinglists.html">ask</a>.
athos@1175
    11
ladanyi@1637
    12
athos@1514
    13
\section requirementsLEMON Hardware and software requirements
athos@1175
    14
klao@1519
    15
In LEMON we use C++ templates heavily, thus compilation takes a
klao@1519
    16
considerable amount of time and memory. So some decent box would be
klao@1519
    17
advantageous. But otherwise there are no special hardware requirements.
athos@1514
    18
klao@1519
    19
You will need a recent C++ compiler. Our primary target is the GNU C++
ladanyi@1637
    20
Compiler (g++), from version 3.3 upwards. We also checked the Intel C++
ladanyi@1637
    21
Compiler (icc). Microsoft Visual C++ .NET 2003 was also reported to
klao@1519
    22
work (but not the earlier versions). If you want to develop with LEMON
klao@1519
    23
under Windows you could consider using Cygwin.
athos@1514
    24
ladanyi@1637
    25
In this description we will suppose a Linux environment and GNU C++ Compiler.
athos@1514
    26
ladanyi@1637
    27
ladanyi@1637
    28
\subsection requirementsLP LP solver requirements
ladanyi@1637
    29
ladanyi@1637
    30
The LEMON LP solver interface can use the GLPK (GNU Linear Programming Kit)
ladanyi@1637
    31
and CPLEX solvers (was tested with CPLEX 7.5). If you want to use it you will
ladanyi@1637
    32
need at least one of these. See \ref configureFlags how to enable these at
ladanyi@1637
    33
compile time.
ladanyi@1637
    34
ladanyi@1637
    35
ladanyi@1637
    36
\subsection requirementsGUI GUI requirements
ladanyi@1637
    37
ladanyi@1637
    38
To compile the graphical graph editor you will need libgnomecanvasmm
ladanyi@1637
    39
(2.6.0 or newer). See \ref configureFlags how to enable it.
ladanyi@1637
    40
athos@1175
    41
athos@1173
    42
\section downloadLEMON How to download LEMON
athos@1173
    43
athos@1511
    44
You can download LEMON from the LEMON web site:
ladanyi@1637
    45
http://lemon.cs.elte.hu/download.html .
klao@1519
    46
There you will find released versions in form of <tt>.tar.gz</tt> files.
klao@1519
    47
If you want a developer version (for example you want to contribute in
klao@1519
    48
developing the library LEMON) then you might want to use our Subversion
klao@1519
    49
repository. This case is not detailed here, so from now on we suppose that
klao@1519
    50
you downloaded a tar.gz file.
athos@1514
    51
athos@1175
    52
athos@1173
    53
\section installLEMON How to install LEMON
athos@1173
    54
athos@1528
    55
In order to install LEMON you have to do the following steps.
athos@1173
    56
klao@1519
    57
Download the tarball (named <tt>lemon-x.y.z.tar.gz</tt> where \c x,\c y
klao@1519
    58
and \c z are numbers indicating the version of the library: in our example
klao@1519
    59
we will have <tt>lemon-0.3.1.tar.gz</tt>) and issue the following
klao@1519
    60
commands:
athos@1511
    61
klao@1519
    62
\verbatim
athos@1511
    63
tar xvzf lemon-0.3.1.tar.gz
athos@1511
    64
cd lemon-0.3.1
athos@1511
    65
./configure
athos@1511
    66
make
athos@1528
    67
make check   #(This is optional, but recommended. It runs a bunch of tests.)
athos@1511
    68
make install
klao@1519
    69
\endverbatim
athos@1511
    70
klao@1519
    71
These commands install LEMON under \c /usr/local (you will
klao@1519
    72
need root privileges to be able to install to that
klao@1519
    73
directory). If you want to install it to some other place, then
athos@1528
    74
pass the \c --prefix=DIRECTORY flag to \c ./configure, for example:
athos@1528
    75
athos@1528
    76
\verbatim
athos@1528
    77
./configure --prefix=/home/user1/lemon
athos@1528
    78
\endverbatim
athos@1528
    79
athos@1528
    80
In what follows we will assume that you were able to install to directory
klao@1519
    81
\c /usr/local, otherwise some extra care is to be taken to use the
klao@1519
    82
library.
athos@1511
    83
athos@1514
    84
We briefly explain these commands below.
athos@1514
    85
klao@1519
    86
\verbatim
athos@1514
    87
tar xvzf lemon-0.3.1.tar.gz
klao@1519
    88
\endverbatim
klao@1519
    89
This command untars the <tt>tar.gz</tt> file into a directory named <tt>
klao@1519
    90
lemon-0.3.1</tt>.
athos@1514
    91
klao@1519
    92
\verbatim
athos@1514
    93
cd lemon-0.3.1
klao@1519
    94
\endverbatim
athos@1514
    95
Enters the directory.
athos@1514
    96
klao@1519
    97
\verbatim
athos@1514
    98
./configure
klao@1519
    99
\endverbatim
athos@1514
   100
Does some configuration (creates makefiles etc).
athos@1514
   101
klao@1519
   102
\verbatim
athos@1514
   103
make
klao@1519
   104
\endverbatim
klao@1519
   105
This command compiles the non-template part of LEMON into
klao@1519
   106
<b>libemon.a</b> file. It also compiles some benchmark and demo
klao@1519
   107
programs.
athos@1514
   108
klao@1519
   109
\verbatim
klao@1519
   110
make check
klao@1519
   111
\endverbatim
klao@1519
   112
This is an optional step: it runs the test programs that we
klao@1519
   113
developed for LEMON to check whether the library works properly on
klao@1519
   114
your platform.
athos@1514
   115
klao@1519
   116
\verbatim
athos@1514
   117
make install
klao@1519
   118
\endverbatim
athos@1514
   119
This will copy the directory structure to its final destination (e.g. to \c
klao@1519
   120
/usr/local) so that your system can access it. This command should
klao@1519
   121
be issued as "root", unless you provided a \c --prefix switch to
ladanyi@1637
   122
the \c configure to install the library in non-default location.
ladanyi@1637
   123
ladanyi@1637
   124
ladanyi@1637
   125
\subsection configureFlags Configure flags
ladanyi@1637
   126
ladanyi@1637
   127
You can pass the following flags to \c ./configure (see \c ./configure --help
ladanyi@1637
   128
for more):
ladanyi@1637
   129
ladanyi@1637
   130
\verbatim
ladanyi@1637
   131
--with-glpk[=PREFIX]
ladanyi@1637
   132
\endverbatim
ladanyi@1637
   133
Enable GLPK support (default). You should specify the prefix too if you
ladanyi@1637
   134
installed it to some non-standard location (e.g. your home directory). If
ladanyi@1637
   135
GLPK is not found, then GLPK support will be disabled.
ladanyi@1637
   136
ladanyi@1637
   137
\verbatim
ladanyi@1637
   138
--with-glpk-includedir=DIR
ladanyi@1637
   139
\endverbatim
ladanyi@1637
   140
The directory where the GLPK header files are located. This is only useful when
alpar@1713
   141
the GLPK headers and libraries are not under the same prefix (which is
alpar@1713
   142
unlikely).
ladanyi@1637
   143
ladanyi@1637
   144
\verbatim
ladanyi@1637
   145
--with-glpk-libdir=DIR
ladanyi@1637
   146
\endverbatim
ladanyi@1637
   147
The directory where the GLPK libraries are located. This is only useful when
alpar@1713
   148
the GLPK headers and libraries are not under the same prefix (which is
alpar@1713
   149
unlikely).
ladanyi@1637
   150
ladanyi@1637
   151
\verbatim
ladanyi@1637
   152
--without-glpk
ladanyi@1637
   153
\endverbatim
ladanyi@1637
   154
Disable GLPK support.
ladanyi@1637
   155
ladanyi@1637
   156
\verbatim
ladanyi@1637
   157
--with-cplex[=PREFIX]
ladanyi@1637
   158
\endverbatim
ladanyi@1637
   159
Enable CPLEX support (default). You should specify the prefix too if you
ladanyi@1637
   160
installed it to some non-standard location (e.g. \c /opt/ilog/cplex75). If
ladanyi@1637
   161
CPLEX is not found, then CPLEX support will be disabled.
ladanyi@1637
   162
ladanyi@1637
   163
\verbatim
ladanyi@1637
   164
--with-cplex-includedir=DIR
ladanyi@1637
   165
\endverbatim
ladanyi@1637
   166
The directory where the CPLEX header files are located. This is only useful
ladanyi@1637
   167
when the CPLEX headers and libraries are not under the same prefix.
ladanyi@1637
   168
ladanyi@1637
   169
\verbatim
ladanyi@1637
   170
--with-cplex-libdir=DIR
ladanyi@1637
   171
\endverbatim
ladanyi@1637
   172
The directory where the CPLEX libraries are located. This is only useful when
ladanyi@1637
   173
the CPLEX headers and libraries are not under the same prefix.
ladanyi@1637
   174
ladanyi@1637
   175
\verbatim
ladanyi@1637
   176
--without-cplex
ladanyi@1637
   177
\endverbatim
ladanyi@1637
   178
Disable CPLEX support.
ladanyi@1637
   179
ladanyi@1637
   180
ladanyi@1637
   181
\section svnCheckout How to checkout LEMON form our Subversion repository
ladanyi@1637
   182
ladanyi@1637
   183
You can obtain the latest version of LEMON from our Subversion repository. To
ladanyi@1637
   184
do this issue the following command:
ladanyi@1637
   185
\verbatim
ladanyi@1637
   186
svn co https://lemon.cs.elte.hu/svn/hugo/trunk lemon
ladanyi@1637
   187
\endverbatim
ladanyi@1637
   188
Use "lemon" as username, the password is empty.
ladanyi@1637
   189
ladanyi@1637
   190
ladanyi@1637
   191
\section svnCompile How to compile the source from the repository
ladanyi@1637
   192
ladanyi@1637
   193
You can compile the code from the repository similarly to the packaged version,
ladanyi@1637
   194
but you will need to run \c ./bootstrap before \c ./configure. See \c
ladanyi@1637
   195
./bootstrap \c --help for options. For bootstrapping you will need the
ladanyi@1637
   196
following tools:
ladanyi@1637
   197
ladanyi@1637
   198
 - <a href="http://www.gnu.org/software/automake/">automake</a> (1.7 or newer)
ladanyi@1637
   199
 - <a href="http://www.gnu.org/software/autoconf/">autoconf</a> (2.59 or newer)
ladanyi@1637
   200
 - <a href="http://www.gnu.org/software/libtool/">libtool</a>
ladanyi@1637
   201
 - <a href="http://pkgconfig.freedesktop.org/">pkgconfig</a>
ladanyi@1637
   202
ladanyi@1637
   203
To generate the documentation, run \c make \c doc. You will need
ladanyi@1637
   204
<a href="http://www.doxygen.org/">Doxygen</a> for this.
ladanyi@1637
   205
ladanyi@1637
   206
You can pass the \c --enable-doc=full flag to \c ./configure to generate the
ladanyi@1637
   207
internal documentation too.
ladanyi@1637
   208
ladanyi@1637
   209
If you pass the \c --disable-doc flag to \c ./configure then the documentation
ladanyi@1637
   210
won't be installed, when you run \c make \c install (this speeds things up a
ladanyi@1637
   211
bit).
athos@1175
   212
athos@1173
   213
\section helloworld My first program using LEMON
athos@1173
   214
klao@1519
   215
If you have installed LEMON on your system you can paste the
klao@1520
   216
following code segment into a file (you can find it as \c
klao@1520
   217
demo/hello_lemon.cc in the LEMON package) to have a first working
klao@1520
   218
program that uses library LEMON.
athos@1173
   219
alpar@1640
   220
\dontinclude hello_lemon.cc
alpar@1640
   221
\skip include
alpar@1640
   222
\until }
athos@1175
   223
athos@1514
   224
First let us briefly explain how this program works.
athos@1175
   225
athos@1175
   226
ListGraph is one of LEMON's graph classes. It is based on linked lists,
athos@1175
   227
therefore iterating throuh its edges and nodes is fast.
athos@1175
   228
alpar@1713
   229
After some convenience typedefs we create a graph and add three nodes to it.
athos@1175
   230
Then we add edges to it to form a complete graph.
athos@1175
   231
athos@1175
   232
Then we iterate through all nodes of the graph. We use a constructor of the
athos@1175
   233
node iterator to initialize it to the first node. The operator++ is used to
athos@1175
   234
step to the next node. Using operator++ on the iterator pointing to the last
athos@1175
   235
node invalidates the iterator i.e. sets its value to
athos@1175
   236
\ref lemon::INVALID "INVALID". This is what we exploit in the stop condition.
athos@1175
   237
athos@1175
   238
We can also iterate through all edges of the graph very similarly. The 
athos@1175
   239
\c target and
athos@1175
   240
\c source member functions can be used to access the endpoints of an edge.
athos@1175
   241
klao@1520
   242
If your installation of LEMON into directory \c /usr/local was
alpar@1713
   243
successful, then it is very easy to compile this program with the
klao@1520
   244
following command (the argument <tt>-lemon</tt> tells the compiler
klao@1520
   245
that we are using the installed library LEMON):
athos@1514
   246
klao@1519
   247
\verbatim
klao@1519
   248
g++ hello_lemon.cc -o hello_lemon -lemon
klao@1519
   249
\endverbatim
klao@1519
   250
klao@1519
   251
As a result you will get the exacutable \c hello_lemon in
athos@1514
   252
this directory that you can run by the command 
klao@1519
   253
\verbatim
klao@1519
   254
./hello_lemon
klao@1519
   255
\endverbatim
athos@1514
   256
athos@1514
   257
klao@1519
   258
If everything has gone well then the previous code fragment prints
klao@1519
   259
out the following:
athos@1175
   260
klao@1519
   261
\verbatim
athos@1175
   262
Nodes: 2 1 0
athos@1175
   263
athos@1175
   264
Edges: (0,2) (1,2) (0,1) (2,1) (1,0) (2,0)
klao@1519
   265
\endverbatim
athos@1175
   266
athos@1514
   267
Congratulations!
athos@1175
   268
klao@1519
   269
If you want to see more features, go to the
klao@1519
   270
\ref quicktour "Quick Tour to LEMON",
klao@1519
   271
if you want to see see some demo programs then go to our 
athos@1175
   272
\ref demoprograms "Demo Programs" page! 
athos@1175
   273
athos@1175
   274
athos@1175
   275
*/