[Lemon-commits] [lemon_svn] alpar: r604 - in hugo/trunk: doc src/include src/work/athos
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:40:30 CET 2006
Author: alpar
Date: Wed Apr 28 14:22:34 2004
New Revision: 604
Modified:
hugo/trunk/doc/Doxyfile
hugo/trunk/src/include/dijkstra.h
hugo/trunk/src/include/smart_graph.h
hugo/trunk/src/work/athos/minlengthpaths.h
Log:
Doxygen options changed.
\author's added.
Modified: hugo/trunk/doc/Doxyfile
==============================================================================
--- hugo/trunk/doc/Doxyfile (original)
+++ hugo/trunk/doc/Doxyfile Wed Apr 28 14:22:34 2004
@@ -133,7 +133,7 @@
# If set to NO, the detailed description appears after the member
# documentation.
-DETAILS_AT_TOP = NO
+DETAILS_AT_TOP = YES
# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
# member inherits the documentation from any documented member that it
@@ -167,7 +167,7 @@
# For instance, some of the names that are used will be different. The list
# of all members will be omitted, etc.
-OPTIMIZE_OUTPUT_FOR_C = YES
+OPTIMIZE_OUTPUT_FOR_C = NO
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
# only. Doxygen will then generate output that is more tailored for Java.
Modified: hugo/trunk/src/include/dijkstra.h
==============================================================================
--- hugo/trunk/src/include/dijkstra.h (original)
+++ hugo/trunk/src/include/dijkstra.h Wed Apr 28 14:22:34 2004
@@ -36,7 +36,8 @@
///\param Heap The heap type used by the %Dijkstra
///algorithm. The default
///is using \ref BinHeap "binary heap".
-
+ ///
+ ///\author Jacint Szabo
#ifdef DOXYGEN
template <typename Graph,
typename LengthMap,
Modified: hugo/trunk/src/include/smart_graph.h
==============================================================================
--- hugo/trunk/src/include/smart_graph.h (original)
+++ hugo/trunk/src/include/smart_graph.h Wed Apr 28 14:22:34 2004
@@ -28,6 +28,7 @@
///\sa \ref GraphSkeleton.
///
///\todo Some member functions could be \c static.
+ ///\author Alpar Juttner
class SmartGraph {
struct NodeT
Modified: hugo/trunk/src/work/athos/minlengthpaths.h
==============================================================================
--- hugo/trunk/src/work/athos/minlengthpaths.h (original)
+++ hugo/trunk/src/work/athos/minlengthpaths.h Wed Apr 28 14:22:34 2004
@@ -25,7 +25,8 @@
/// an algorithm which finds k edge-disjoint paths
/// from a given source node to a given target node in an
/// edge-weighted directed graph having minimal total weigth (length).
-
+ ///
+ ///\author Attila Bernath
template <typename Graph, typename LengthMap>
class MinLengthPaths {
More information about the Lemon-commits
mailing list