[Lemon-commits] [lemon_svn] alpar: r3019 - in hugo/trunk/lemon: . concepts

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:52 CET 2006


Author: alpar
Date: Thu Oct 26 08:54:13 2006
New Revision: 3019

Modified:
   hugo/trunk/lemon/concepts/bpugraph.h
   hugo/trunk/lemon/concepts/ugraph.h
   hugo/trunk/lemon/smart_graph.h

Log:
Doc update

Modified: hugo/trunk/lemon/concepts/bpugraph.h
==============================================================================
--- hugo/trunk/lemon/concepts/bpugraph.h	(original)
+++ hugo/trunk/lemon/concepts/bpugraph.h	Thu Oct 26 08:54:13 2006
@@ -712,8 +712,6 @@
       /// 
       /// ReadWrite map of the nodes to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (NodeMap<bool>)
-      /// needs some extra attention!
       /// \todo Wrong documentation
       template<class T> 
       class NodeMap : public ReadWriteMap< Node, T >
@@ -741,8 +739,6 @@
       /// 
       /// ReadWrite map of the ANodes to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (NodeMap<bool>)
-      /// needs some extra attention!
       /// \todo Wrong documentation
       template<class T> 
       class ANodeMap : public ReadWriteMap< Node, T >
@@ -770,8 +766,6 @@
       /// 
       /// ReadWrite map of the BNodes to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (NodeMap<bool>)
-      /// needs some extra attention!
       /// \todo Wrong documentation
       template<class T> 
       class BNodeMap : public ReadWriteMap< Node, T >
@@ -799,8 +793,6 @@
       ///
       /// Reference map of the directed edges to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (EdgeMap<bool>)
-      /// needs some extra attention!
       /// \todo Wrong documentation
       template<class T> 
       class EdgeMap : public ReadWriteMap<Edge,T>
@@ -827,8 +819,6 @@
 
       /// Reference map of the edges to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
-      /// needs some extra attention!
       /// \todo Wrong documentation
       template<class T> 
       class UEdgeMap : public ReadWriteMap<UEdge,T>

Modified: hugo/trunk/lemon/concepts/ugraph.h
==============================================================================
--- hugo/trunk/lemon/concepts/ugraph.h	(original)
+++ hugo/trunk/lemon/concepts/ugraph.h	Thu Oct 26 08:54:13 2006
@@ -505,8 +505,6 @@
       /// 
       /// ReadWrite map of the nodes to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (NodeMap<bool>)
-      /// needs some extra attention!
       template<class T> 
       class NodeMap : public ReadWriteMap< Node, T >
       {
@@ -531,8 +529,6 @@
       ///
       /// Reference map of the directed edges to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (EdgeMap<bool>)
-      /// needs some extra attention!
       template<class T> 
       class EdgeMap : public ReadWriteMap<Edge,T>
       {
@@ -556,8 +552,6 @@
 
       /// Reference map of the edges to type \c T.
       /// \sa Reference
-      /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
-      /// needs some extra attention!
       template<class T> 
       class UEdgeMap : public ReadWriteMap<UEdge,T>
       {

Modified: hugo/trunk/lemon/smart_graph.h
==============================================================================
--- hugo/trunk/lemon/smart_graph.h	(original)
+++ hugo/trunk/lemon/smart_graph.h	Thu Oct 26 08:54:13 2006
@@ -388,8 +388,6 @@
   ///
   /// \sa concepts::UGraph.
   ///
-  /// \todo Snapshot hasn't been implemented yet.
-  ///
   class SmartUGraph : public ExtendedSmartUGraphBase {
   private:
 



More information about the Lemon-commits mailing list