Correction of urls and email addresses
authordeba
Tue, 06 Mar 2007 17:04:16 +0000
changeset 2395fe5966d8acfc
parent 2394 8b9b44a9c754
child 2396 658c04d74729
Correction of urls and email addresses
doc/getstart.dox
     1.1 --- a/doc/getstart.dox	Tue Mar 06 17:03:37 2007 +0000
     1.2 +++ b/doc/getstart.dox	Tue Mar 06 17:04:16 2007 +0000
     1.3 @@ -24,7 +24,8 @@
     1.4  "Hello World" type program that already uses LEMON. We assume that you
     1.5  have a basic knowledge of your operating system and \c C++ programming
     1.6  language. The procedure is pretty straightforward, but if you have any
     1.7 -difficulties don't hesitate to <a href="mailto:etik-ol@cs.elte.hu">ask</a>.
     1.8 +difficulties don't hesitate to 
     1.9 +<a href="mailto:lemon-user@lemon.cs.elte.hu">ask</a>.
    1.10  
    1.11  
    1.12  \section requirementsLEMON Hardware and software requirements
    1.13 @@ -44,16 +45,17 @@
    1.14  
    1.15  \subsection requirementsLP LP solver requirements
    1.16  
    1.17 -The LEMON LP solver interface can use the GLPK (GNU Linear Programming Kit)
    1.18 -and CPLEX solvers (was tested with CPLEX 7.5). If you want to use it you will
    1.19 -need at least one of these. See \ref configureFlags how to enable these at
    1.20 -compile time.
    1.21 +The LEMON LP solver interface can use the GLPK (GNU Linear Programming
    1.22 +Kit) ,CPLEX (was tested with CPLEX 7.5) and SoPlex solver. If you want
    1.23 +to use it you will need at least one of these. See \ref configureFlags
    1.24 +how to enable these at compile time.
    1.25  
    1.26  
    1.27  \section downloadLEMON How to download LEMON
    1.28  
    1.29  You can download LEMON from the LEMON web site:
    1.30 -http://lemon.cs.elte.hu/download.html .
    1.31 +<a href="http://lemon.cs.elte.hu/site/products/">
    1.32 +http://lemon.cs.elte.hu/site/products/</a> .
    1.33  There you will find released versions in form of <tt>.tar.gz</tt> files.
    1.34  If you want a developer version (for example you want to contribute in
    1.35  developing the library LEMON) then you might want to use our Subversion
    1.36 @@ -188,22 +190,47 @@
    1.37  \endverbatim
    1.38  Disable CPLEX support.
    1.39  
    1.40 +\verbatim 
    1.41 +--with-soplex[=PREFIX] 
    1.42 +\endverbatim 
    1.43 +Enable SoPlex support (default). You should specify the prefix too if
    1.44 +you installed it to some non-standard location. If SoPlex is not
    1.45 +found, then SoPlex support will be disabled.
    1.46 +
    1.47 +\verbatim
    1.48 +--with-soplex-includedir=DIR
    1.49 +\endverbatim
    1.50 +The directory where the SoPlex header files are located. This is only useful
    1.51 +when the SoPlex headers and libraries are not under the same prefix.
    1.52 +
    1.53 +\verbatim
    1.54 +--with-soplex-libdir=DIR
    1.55 +\endverbatim
    1.56 +The directory where the SoPlex libraries are located. This is only useful when
    1.57 +the SoPlex headers and libraries are not under the same prefix.
    1.58 +
    1.59 +\verbatim
    1.60 +--without-soplex
    1.61 +\endverbatim
    1.62 +Disable SoPlex support.
    1.63 +
    1.64  
    1.65  \section svnCheckout How to checkout LEMON form our Subversion repository
    1.66  
    1.67  You can obtain the latest version of LEMON from our Subversion repository. To
    1.68  do this issue the following command:
    1.69  \verbatim
    1.70 -svn co https://lemon.cs.elte.hu/svn/hugo/trunk lemon
    1.71 +svn co https://lemon.cs.elte.hu/svn/lemon/trunk lemon-src
    1.72  \endverbatim
    1.73  Use "lemon" as username, the password is empty.
    1.74  
    1.75  
    1.76  \section svnCompile How to compile the source from the repository
    1.77  
    1.78 -You can compile the code from the repository similarly to the packaged version,
    1.79 -but you will need to run \c ./bootstrap before \c ./configure. See \c
    1.80 -./bootstrap \c --help for options. For bootstrapping you will need the
    1.81 +You can compile the code from the repository similarly to the packaged
    1.82 +version, but you will need to run \c autoreconf \c -vi or 
    1.83 +\c ./bootstrap in some older environment before \c ./configure. See \c
    1.84 +./configure \c --help for options. For bootstrapping you will need the
    1.85  following tools:
    1.86  
    1.87   - <a href="http://www.gnu.org/software/automake/">automake</a> (1.7 or newer)