Merge
authorAlpar Juttner <alpar@cs.elte.hu>
Tue, 12 Feb 2008 21:08:29 +0000
changeset 76fc178a057bbd
parent 75 6265aa2f9d7e
parent 72 7050661bdea4
child 77 2de55e4f57a7
child 79 d73c2e8b25cb
Merge
     1.1 --- a/doc/groups.dox	Tue Feb 12 21:03:19 2008 +0000
     1.2 +++ b/doc/groups.dox	Tue Feb 12 21:08:29 2008 +0000
     1.3 @@ -487,20 +487,20 @@
     1.4  /**
     1.5  @defgroup section_io Section readers and writers
     1.6  @ingroup lemon_io
     1.7 -\brief Section readers and writers for lemon Input-Output.
     1.8 +\brief Section readers and writers for LEMON Input-Output.
     1.9  
    1.10 -This group describes section readers and writers that can be attached to
    1.11 -\ref LemonReader and \ref LemonWriter.
    1.12 +This group describes section reader and writer classes that can be 
    1.13 +attached to \ref LemonReader and \ref LemonWriter.
    1.14  */
    1.15  
    1.16  /**
    1.17 -@defgroup item_io Item Readers and Writers
    1.18 +@defgroup item_io Item readers and writers
    1.19  @ingroup lemon_io
    1.20 -\brief Item readers and writers for lemon Input-Output.
    1.21 +\brief Item readers and writers for LEMON Input-Output.
    1.22  
    1.23 -The Input-Output classes can handle more data type by example
    1.24 -as map or attribute value. Each of these should be written and
    1.25 -read some way. The module make possible to do this.  
    1.26 +This group describes reader and writer classes for various data types
    1.27 +(e.g. map or attribute values). These classes can be attached to
    1.28 +\ref LemonReader and \ref LemonWriter.
    1.29  */
    1.30  
    1.31  /**
     2.1 --- a/lemon/tolerance.h	Tue Feb 12 21:03:19 2008 +0000
     2.2 +++ b/lemon/tolerance.h	Tue Feb 12 21:08:29 2008 +0000
     2.3 @@ -40,9 +40,9 @@
     2.4    ///handle the comparison of numbers that are obtained
     2.5    ///as a result of a probably inexact computation.
     2.6    ///
     2.7 -  ///This is an abstract class, it should be specialized for all numerical
     2.8 -  ///data types. These specialized classes like \ref Tolerance<double>
     2.9 -  ///may offer additional tuning parameters.
    2.10 +  ///This is an abstract class, it should be specialized for all 
    2.11 +  ///numerical data types. These specialized classes like 
    2.12 +  ///Tolerance<double> may offer additional tuning parameters.
    2.13    ///
    2.14    ///\sa Tolerance<float>
    2.15    ///\sa Tolerance<double>
    2.16 @@ -117,7 +117,7 @@
    2.17      static void defaultEpsilon(Value e) {def_epsilon=e;}
    2.18  
    2.19      ///\name Comparisons
    2.20 -    ///See \ref Tolerance for more details.
    2.21 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.22  
    2.23      ///@{
    2.24  
    2.25 @@ -168,7 +168,7 @@
    2.26      static void defaultEpsilon(Value e) {def_epsilon=e;}
    2.27  
    2.28      ///\name Comparisons
    2.29 -    ///See \ref Tolerance for more details.
    2.30 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.31  
    2.32      ///@{
    2.33  
    2.34 @@ -219,7 +219,7 @@
    2.35      static void defaultEpsilon(Value e) {def_epsilon=e;}
    2.36  
    2.37      ///\name Comparisons
    2.38 -    ///See \ref Tolerance for more details.
    2.39 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.40  
    2.41      ///@{
    2.42  
    2.43 @@ -252,7 +252,7 @@
    2.44      typedef int Value;
    2.45  
    2.46      ///\name Comparisons
    2.47 -    ///See \ref Tolerance for more details.
    2.48 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.49  
    2.50      ///@{
    2.51  
    2.52 @@ -275,7 +275,7 @@
    2.53  
    2.54    ///Unsigned integer specialization of Tolerance.
    2.55  
    2.56 -  ///Unsigned integer specialization of \ref Tolerance.
    2.57 +  ///Unsigned integer specialization of Tolerance.
    2.58    ///\sa Tolerance
    2.59    template<>
    2.60    class Tolerance<unsigned int>
    2.61 @@ -285,7 +285,7 @@
    2.62      typedef unsigned int Value;
    2.63  
    2.64      ///\name Comparisons
    2.65 -    ///See \ref Tolerance for more details.
    2.66 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.67  
    2.68      ///@{
    2.69  
    2.70 @@ -319,7 +319,7 @@
    2.71      typedef long int Value;
    2.72  
    2.73      ///\name Comparisons
    2.74 -    ///See \ref Tolerance for more details.
    2.75 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.76  
    2.77      ///@{
    2.78  
    2.79 @@ -342,7 +342,7 @@
    2.80  
    2.81    ///Unsigned long integer specialization of Tolerance.
    2.82  
    2.83 -  ///Unsigned long integer specialization of \ref Tolerance.
    2.84 +  ///Unsigned long integer specialization of Tolerance.
    2.85    ///\sa Tolerance
    2.86    template<>
    2.87    class Tolerance<unsigned long int>
    2.88 @@ -352,7 +352,7 @@
    2.89      typedef unsigned long int Value;
    2.90  
    2.91      ///\name Comparisons
    2.92 -    ///See \ref Tolerance for more details.
    2.93 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
    2.94  
    2.95      ///@{
    2.96  
    2.97 @@ -377,7 +377,7 @@
    2.98  
    2.99    ///Long long integer specialization of Tolerance.
   2.100  
   2.101 -  ///Long long integer specialization of \ref Tolerance.
   2.102 +  ///Long long integer specialization of Tolerance.
   2.103    ///\warning This class (more exactly, type <tt>long long</tt>)
   2.104    ///is not ansi compatible.
   2.105    ///\sa Tolerance
   2.106 @@ -389,7 +389,7 @@
   2.107      typedef long long int Value;
   2.108  
   2.109      ///\name Comparisons
   2.110 -    ///See \ref Tolerance for more details.
   2.111 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
   2.112  
   2.113      ///@{
   2.114  
   2.115 @@ -412,7 +412,7 @@
   2.116  
   2.117    ///Unsigned long long integer specialization of Tolerance.
   2.118  
   2.119 -  ///Unsigned long long integer specialization of \ref Tolerance.
   2.120 +  ///Unsigned long long integer specialization of Tolerance.
   2.121    ///\warning This class (more exactly, type <tt>unsigned long long</tt>)
   2.122    ///is not ansi compatible.
   2.123    ///\sa Tolerance
   2.124 @@ -424,7 +424,7 @@
   2.125      typedef unsigned long long int Value;
   2.126  
   2.127      ///\name Comparisons
   2.128 -    ///See \ref Tolerance for more details.
   2.129 +    ///See \ref lemon::Tolerance "Tolerance" for more details.
   2.130  
   2.131      ///@{
   2.132