# HG changeset patch
# User kpeter
# Date 1189721132 0
# Node ID 46818ce27a60c05053b8daa58de4eb1fff1ddf55
# Parent d6f12a9b5cbf6547ae922571c967912a67a2bea8
Small bug fixes.
diff -r d6f12a9b5cbf -r 46818ce27a60 doc/algorithms.dox
--- a/doc/algorithms.dox Fri Aug 31 08:40:49 2007 +0000
+++ b/doc/algorithms.dox Thu Sep 13 22:05:32 2007 +0000
@@ -95,7 +95,7 @@
And finally you can start the process with \ref lemon::Bfs::start "start()", or
you can write your own loop to process the nodes one-by-one.
-\todo demo for bfs advanced control
+\todo Demo for Bfs advanced control.
\subsection Dfs
Since Dfs is very similar to Bfs with a few tiny differences we only see a bit more complex example
@@ -149,6 +149,8 @@
The program is to be found in the \ref demo directory: \ref topological_ordering.cc
+\todo Check the linking of the demo file, the code samples are missing.
+
More algorithms are described in the \ref algorithms2 "second part".
*/
}
diff -r d6f12a9b5cbf -r 46818ce27a60 doc/getstart.dox
--- a/doc/getstart.dox Fri Aug 31 08:40:49 2007 +0000
+++ b/doc/getstart.dox Thu Sep 13 22:05:32 2007 +0000
@@ -54,13 +54,13 @@
\section downloadLEMON How to download LEMON
You can download LEMON from the LEMON web site:
-
-http://lemon.cs.elte.hu/site/products/ .
+
+https://lemon.cs.elte.hu/site/products/ .
There you will find released versions 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.
+repository. This case is detailed later, so from now on we suppose that
+you downloaded a .tar.gz file.
\section installLEMON How to install LEMON
@@ -84,7 +84,7 @@
These commands install LEMON under \c /usr/local (you will
need 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=DIRECTORY flag to \c ./configure, for example:
+pass the \c --prefix=DIRECTORY flag to ./configure, for example:
\verbatim
./configure --prefix=/home/username/lemon
@@ -137,7 +137,7 @@
\subsection configureFlags Configure flags
-You can pass the following flags to \c ./configure (see \c ./configure --help
+You can pass the following flags to ./configure (see ./configure --help
for more):
\verbatim
@@ -229,7 +229,7 @@
You can compile the code from the repository similarly to the packaged
version, but you will need to run \c autoreconf \c -vi or
-\c ./bootstrap in some older environment before \c ./configure. See \c
+./bootstrap in some older environment before ./configure. See \c
./configure \c --help for options. For bootstrapping you will need the
following tools:
@@ -241,10 +241,10 @@
To generate the documentation, run \c make \c doc. You will need
Doxygen for this.
-You can pass the \c --enable-doc=full flag to \c ./configure to generate the
+You can pass the \c --enable-doc=full flag to ./configure to generate the
internal documentation too.
-If you pass the \c --disable-doc flag to \c ./configure then the documentation
+If you pass the \c --disable-doc flag to ./configure then the documentation
won't be installed, when you run \c make \c install (this speeds things up a
bit).
@@ -306,7 +306,7 @@
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
+if you want to see some demo programs then go to our
\ref demoprograms "Demo Programs" page!