# HG changeset patch # User athos # Date 1119646988 0 # Node ID c9b9bc63db4eb419a4a05022fa5d7fbfc8246bae # Parent b2a79aaa6867742f05bdc2db210bcccacf13728c Improved getsart.dox and quicktour.dox diff -r b2a79aaa6867 -r c9b9bc63db4e doc/getstart.dox --- a/doc/getstart.dox Fri Jun 24 21:02:47 2005 +0000 +++ b/doc/getstart.dox Fri Jun 24 21:03:08 2005 +0000 @@ -3,26 +3,46 @@ In this page we detail how to start using LEMON, from downloading it to your computer, through the steps of installation to showing a simple -"Hello World" type program that already uses LEMON. If anything is not +"Hello World" type program that already uses LEMON. We assume that you have a +basic knowledge of your operating system and \c C++ or \c C +programming language. If anything is not clear write to our FAQ. \todo Is this FAQ thing a good idea here? Is there such a thing? If twice YES then a link comes here. +\section requirementsLEMON Hardware and software requirements +Hardware requirements ... + +You will also need a C++ compiler. We mostly used the Gnu C++ Compiler (g++), +from version 3.0 upwards. We also checked the Intel C compiler +(icc). Unfortunately, Visual C++ compiler knows not enough to compile the +library, so if you are using Microsoft Windows, then try to compile under +Cygwin. + +Ide kell írni: + +-Hol fordul (Windows-os fordító nem fordítja, unix/linux alatt gcc hanyas verziója kell) +- + +In this description we will suppose a linux environment and Gnu C Compiler. \section downloadLEMON How to download LEMON You can download LEMON from the LEMON web site: http://lemon.cs.elte.hu -by following the download link. There you will find the issued distributions in form of \e .ta.gz files. If you want a developer version (for example you want to contribute in developing the library LEMON) then you might want to use our Subversion repository. This case is not detailed here, so from now on we suppose that you downloaded a tar.gz file. +by following the download link. There you will find the issued distributions +in form of .tar.gz files. If you want a developer version (for example you want to contribute in developing the library LEMON) then you might want to use our Subversion repository. This case is not detailed here, so from now on we suppose that you downloaded a tar.gz file. + \section installLEMON How to install LEMON In order to install LEMON you have to do the following -Download the tarball and issue the following commands: +Download the tarball (named lemon-x.y.z.tar.gz where \c x,\c y and \c z are +numbers indicating the version of the library: in our example we will have lemon-0.3.1) and issue the following commands: \code tar xvzf lemon-0.3.1.tar.gz @@ -33,16 +53,54 @@ make install \endcode -These commands install LEMON under /usr/local. If you want to install it to some other place, then pass the --prefix=DIR flag to ./configure. +These commands install LEMON under \c /usr/local (you will probably need \c root +privileges to be able to install to that directory). If you want to install it +to some other place, then pass the \c --prefix=DIR flag to \c ./configure. In +what follows we will assume that you were able to install to directory \c +/usr/local, otherwise some extra care is to be taken to use the library. -Ide kell írni: - --Hol fordul (Windows-os fordító nem fordítja, unix/linux alatt gcc hanyas verziója kell) -- +We briefly explain these commands below. + +\code +tar xvzf lemon-0.3.1.tar.gz +\endcode +This command untars the tar.gz file into a directory named lemon-0.3.1. + +\code +cd lemon-0.3.1 +\endcode +Enters the directory. + +\code +./configure +\endcode +Does some configuration (creates makefiles etc). + +\code +make +\endcode +This command compiles the .cc files of the library package (the +implementation of non-template functions and classes and some test and demo +programs) and creates the very important libemon.la file. When +linking your program that uses LEMON it needs to access this file. + +\code +make check (This is optional, but recomended. It runs a bunch of tests.) +\endcode +This is an optional step: it runs the test programs that we developed for +LEMON to check +whether the library works properly on your platform. + +\code +make install +\endcode +This will copy the directory structure to its final destination (e.g. to \c +/usr/local) so that your system can access it. \section helloworld My first program using LEMON -If you have installed LEMON on your system you can paste the following code +If you have installed LEMON on your system you +can paste the following code segment into a file to have a first working program that uses library LEMON. \code @@ -54,11 +112,7 @@ int main() { typedef ListGraph Graph; - typedef Graph::Edge Edge; - typedef Graph::InEdgeIt InEdgeIt; - typedef Graph::OutEdgeIt OutEdgeIt; typedef Graph::EdgeIt EdgeIt; - typedef Graph::Node Node; typedef Graph::NodeIt NodeIt; Graph g; @@ -82,6 +136,7 @@ \endcode +First let us briefly explain how this program works. ListGraph is one of LEMON's graph classes. It is based on linked lists, therefore iterating throuh its edges and nodes is fast. @@ -99,7 +154,22 @@ \c target and \c source member functions can be used to access the endpoints of an edge. -The previous code fragment prints out the following: +If you have saved the preceding code into a file named, say, \c hemon.cc and your installation of LEMON into directory \c /usr/local was +successful then it is very easy to compile this program with the following +command (the argument -lemon tells the compiler that we are using the +installed library LEMON): +\code +g++ hemon.cc -o hemon -lemon +\endcode + +As a result you will get the exacutable \c hemon in +this directory that you can run by the command +\code +./hemon +\endcode + + +If everything has gone well then the previous code fragment prints out the following: \code Nodes: 2 1 0 @@ -107,6 +177,7 @@ Edges: (0,2) (1,2) (0,1) (2,1) (1,0) (2,0) \endcode +Congratulations! If you want to see more features, go to the \ref quicktour "Quick Tour to LEMON", if you want to see see some demo programs then go to our diff -r b2a79aaa6867 -r c9b9bc63db4e doc/quicktour.dox --- a/doc/quicktour.dox Fri Jun 24 21:02:47 2005 +0000 +++ b/doc/quicktour.dox Fri Jun 24 21:03:08 2005 +0000 @@ -18,14 +18,18 @@ graph: a very good description can be found in the page about \ref graphs "graphs". -You will also want to assign data to the edges or nodes of the graph, for example a length or capacity function defined on the edges. You can do this in LEMON using so called \ref maps "maps". You can define a map on the nodes or on the edges of the graph and the value of the map (the range of the function) can be practically almost of any type. Read more about maps \ref maps-page "here". +You will also want to assign data to the edges or nodes of the graph, for +example a length or capacity function defined on the edges. You can do this in +LEMON using so called \b maps. You can define a map on the nodes or on the edges of the graph and the value of the map (the range of the function) can be practically almost of any type. Read more about maps \ref maps-page "here". Some examples are the following (you will find links next to the code fragments that help to download full demo programs: save them on your computer and compile them according to the description in the page about \ref getsart How to start using LEMON): -- First we give two examples that show how to instantiate a graph. The + */