[Lemon-commits] [lemon_svn] deba: r2972 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:33 CET 2006
Author: deba
Date: Tue Oct 3 13:24:41 2006
New Revision: 2972
Modified:
hugo/trunk/lemon/color.h
hugo/trunk/lemon/dijkstra.h
hugo/trunk/lemon/johnson.h
hugo/trunk/lemon/prim.h
hugo/trunk/lemon/random.h
Log:
Some doc fix
Modified: hugo/trunk/lemon/color.h
==============================================================================
--- hugo/trunk/lemon/color.h (original)
+++ hugo/trunk/lemon/color.h Tue Oct 3 13:24:41 2006
@@ -32,13 +32,13 @@
namespace lemon {
- /// \addtogroup misc
- /// @{
+
+/// \addtogroup misc
+/// @{
///Data structure representing RGB colors.
///Data structure representing RGB colors.
-///\ingroup misc
class Color
{
double _r,_g,_b;
Modified: hugo/trunk/lemon/dijkstra.h
==============================================================================
--- hugo/trunk/lemon/dijkstra.h (original)
+++ hugo/trunk/lemon/dijkstra.h Tue Oct 3 13:24:41 2006
@@ -365,9 +365,9 @@
throw UninitializedParameter();
}
};
- ///\ref named-templ-param "Named parameter" for setting heap and cross
- ///reference type
-
+ ///\brief \ref named-templ-param "Named parameter" for setting
+ ///heap and cross reference type
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type
///
@@ -389,9 +389,9 @@
return new Heap(R);
}
};
- ///\ref named-templ-param "Named parameter" for setting heap and cross
- ///reference type with automatic allocation
-
+ ///\brief \ref named-templ-param "Named parameter" for setting
+ ///heap and cross reference type with automatic allocation
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type. It can allocate the heap and the cross reference
///object if the cross reference's constructor waits for the graph as
Modified: hugo/trunk/lemon/johnson.h
==============================================================================
--- hugo/trunk/lemon/johnson.h (original)
+++ hugo/trunk/lemon/johnson.h Tue Oct 3 13:24:41 2006
@@ -379,7 +379,7 @@
};
///\brief \ref named-templ-param "Named parameter" for setting heap and
///cross reference type
-
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type
///
@@ -401,9 +401,9 @@
return new Heap(R);
}
};
- ///\ref named-templ-param "Named parameter" for setting heap and cross
- ///reference type with automatic allocation
-
+ ///\brief \ref named-templ-param "Named parameter" for setting
+ ///heap and cross reference type with automatic allocation
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type. It can allocate the heap and the cross reference
///object if the cross reference's constructor waits for the graph as
Modified: hugo/trunk/lemon/prim.h
==============================================================================
--- hugo/trunk/lemon/prim.h (original)
+++ hugo/trunk/lemon/prim.h Tue Oct 3 13:24:41 2006
@@ -330,9 +330,9 @@
return UninitializedParameter();
}
};
- ///\ref named-templ-param "Named parameter" for setting heap and cross
- ///reference type
-
+ ///\brief \ref named-templ-param "Named parameter" for setting
+ ///heap and cross reference type
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type
///
@@ -353,9 +353,9 @@
return new Heap(ref);
}
};
- ///\ref named-templ-param "Named parameter" for setting heap and cross
- ///reference type with automatic allocation
-
+ ///\brief \ref named-templ-param "Named parameter" for setting
+ ///heap and cross reference type with automatic allocation
+ ///
///\ref named-templ-param "Named parameter" for setting heap and cross
///reference type. It can allocate the heap and the cross reference
///object if the cross reference's constructor waits for the graph as
Modified: hugo/trunk/lemon/random.h
==============================================================================
--- hugo/trunk/lemon/random.h (original)
+++ hugo/trunk/lemon/random.h Tue Oct 3 13:24:41 2006
@@ -222,6 +222,8 @@
#elif WORD_BIT == 64
+ /// \ingroup misc
+ ///
/// \brief Mersenne Twister random number generator
///
/// The Mersenne Twister is a twisted generalized feedback
@@ -406,6 +408,8 @@
#else
+ /// \ingroup misc
+ ///
/// \brief Mersenne Twister random number generator
///
/// The Mersenne Twister is a twisted generalized feedback
More information about the Lemon-commits
mailing list