[Lemon-commits] Alpar Juttner: Merge

Lemon HG hg at lemon.cs.elte.hu
Tue Feb 12 22:09:36 CET 2008


details:   http://lemon.cs.elte.hu/hg/lemon/rev/fc178a057bbd
changeset: 76:fc178a057bbd
user:      Alpar Juttner <alpar [at] cs.elte.hu>
date:      Tue Feb 12 21:08:29 2008 +0000
description:
	Merge

diffstat:

2 files changed, 24 insertions(+), 24 deletions(-)
doc/groups.dox    |   16 ++++++++--------
lemon/tolerance.h |   32 ++++++++++++++++----------------

diffs (165 lines):

diff -r 6265aa2f9d7e -r fc178a057bbd doc/groups.dox
--- a/doc/groups.dox	Tue Feb 12 21:03:19 2008 +0000
+++ b/doc/groups.dox	Tue Feb 12 21:08:29 2008 +0000
@@ -487,20 +487,20 @@ tutorial pages.
 /**
 @defgroup section_io Section readers and writers
 @ingroup lemon_io
-\brief Section readers and writers for lemon Input-Output.
+\brief Section readers and writers for LEMON Input-Output.
 
-This group describes section readers and writers that can be attached to
-\ref LemonReader and \ref LemonWriter.
+This group describes section reader and writer classes that can be 
+attached to \ref LemonReader and \ref LemonWriter.
 */
 
 /**
- at defgroup item_io Item Readers and Writers
+ at defgroup item_io Item readers and writers
 @ingroup lemon_io
-\brief Item readers and writers for lemon Input-Output.
+\brief Item readers and writers for LEMON Input-Output.
 
-The Input-Output classes can handle more data type by example
-as map or attribute value. Each of these should be written and
-read some way. The module make possible to do this.  
+This group describes reader and writer classes for various data types
+(e.g. map or attribute values). These classes can be attached to
+\ref LemonReader and \ref LemonWriter.
 */
 
 /**
diff -r 6265aa2f9d7e -r fc178a057bbd lemon/tolerance.h
--- a/lemon/tolerance.h	Tue Feb 12 21:03:19 2008 +0000
+++ b/lemon/tolerance.h	Tue Feb 12 21:08:29 2008 +0000
@@ -40,9 +40,9 @@ namespace lemon {
   ///handle the comparison of numbers that are obtained
   ///as a result of a probably inexact computation.
   ///
-  ///This is an abstract class, it should be specialized for all numerical
-  ///data types. These specialized classes like \ref Tolerance<double>
-  ///may offer additional tuning parameters.
+  ///This is an abstract class, it should be specialized for all 
+  ///numerical data types. These specialized classes like 
+  ///Tolerance<double> may offer additional tuning parameters.
   ///
   ///\sa Tolerance<float>
   ///\sa Tolerance<double>
@@ -117,7 +117,7 @@ namespace lemon {
     static void defaultEpsilon(Value e) {def_epsilon=e;}
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -168,7 +168,7 @@ namespace lemon {
     static void defaultEpsilon(Value e) {def_epsilon=e;}
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -219,7 +219,7 @@ namespace lemon {
     static void defaultEpsilon(Value e) {def_epsilon=e;}
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -252,7 +252,7 @@ namespace lemon {
     typedef int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -275,7 +275,7 @@ namespace lemon {
 
   ///Unsigned integer specialization of Tolerance.
 
-  ///Unsigned integer specialization of \ref Tolerance.
+  ///Unsigned integer specialization of Tolerance.
   ///\sa Tolerance
   template<>
   class Tolerance<unsigned int>
@@ -285,7 +285,7 @@ namespace lemon {
     typedef unsigned int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -319,7 +319,7 @@ namespace lemon {
     typedef long int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -342,7 +342,7 @@ namespace lemon {
 
   ///Unsigned long integer specialization of Tolerance.
 
-  ///Unsigned long integer specialization of \ref Tolerance.
+  ///Unsigned long integer specialization of Tolerance.
   ///\sa Tolerance
   template<>
   class Tolerance<unsigned long int>
@@ -352,7 +352,7 @@ namespace lemon {
     typedef unsigned long int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -377,7 +377,7 @@ namespace lemon {
 
   ///Long long integer specialization of Tolerance.
 
-  ///Long long integer specialization of \ref Tolerance.
+  ///Long long integer specialization of Tolerance.
   ///\warning This class (more exactly, type <tt>long long</tt>)
   ///is not ansi compatible.
   ///\sa Tolerance
@@ -389,7 +389,7 @@ namespace lemon {
     typedef long long int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 
@@ -412,7 +412,7 @@ namespace lemon {
 
   ///Unsigned long long integer specialization of Tolerance.
 
-  ///Unsigned long long integer specialization of \ref Tolerance.
+  ///Unsigned long long integer specialization of Tolerance.
   ///\warning This class (more exactly, type <tt>unsigned long long</tt>)
   ///is not ansi compatible.
   ///\sa Tolerance
@@ -424,7 +424,7 @@ namespace lemon {
     typedef unsigned long long int Value;
 
     ///\name Comparisons
-    ///See \ref Tolerance for more details.
+    ///See \ref lemon::Tolerance "Tolerance" for more details.
 
     ///@{
 



More information about the Lemon-commits mailing list