Doc update
authoralpar
Thu, 26 Oct 2006 06:54:13 +0000
changeset 2261c52b572c294f
parent 2260 4274224f8a7d
child 2262 b9a7f4115abe
Doc update
lemon/concepts/bpugraph.h
lemon/concepts/ugraph.h
lemon/smart_graph.h
     1.1 --- a/lemon/concepts/bpugraph.h	Tue Oct 24 17:19:16 2006 +0000
     1.2 +++ b/lemon/concepts/bpugraph.h	Thu Oct 26 06:54:13 2006 +0000
     1.3 @@ -712,8 +712,6 @@
     1.4        /// 
     1.5        /// ReadWrite map of the nodes to type \c T.
     1.6        /// \sa Reference
     1.7 -      /// \warning Making maps that can handle bool type (NodeMap<bool>)
     1.8 -      /// needs some extra attention!
     1.9        /// \todo Wrong documentation
    1.10        template<class T> 
    1.11        class NodeMap : public ReadWriteMap< Node, T >
    1.12 @@ -741,8 +739,6 @@
    1.13        /// 
    1.14        /// ReadWrite map of the ANodes to type \c T.
    1.15        /// \sa Reference
    1.16 -      /// \warning Making maps that can handle bool type (NodeMap<bool>)
    1.17 -      /// needs some extra attention!
    1.18        /// \todo Wrong documentation
    1.19        template<class T> 
    1.20        class ANodeMap : public ReadWriteMap< Node, T >
    1.21 @@ -770,8 +766,6 @@
    1.22        /// 
    1.23        /// ReadWrite map of the BNodes to type \c T.
    1.24        /// \sa Reference
    1.25 -      /// \warning Making maps that can handle bool type (NodeMap<bool>)
    1.26 -      /// needs some extra attention!
    1.27        /// \todo Wrong documentation
    1.28        template<class T> 
    1.29        class BNodeMap : public ReadWriteMap< Node, T >
    1.30 @@ -799,8 +793,6 @@
    1.31        ///
    1.32        /// Reference map of the directed edges to type \c T.
    1.33        /// \sa Reference
    1.34 -      /// \warning Making maps that can handle bool type (EdgeMap<bool>)
    1.35 -      /// needs some extra attention!
    1.36        /// \todo Wrong documentation
    1.37        template<class T> 
    1.38        class EdgeMap : public ReadWriteMap<Edge,T>
    1.39 @@ -827,8 +819,6 @@
    1.40  
    1.41        /// Reference map of the edges to type \c T.
    1.42        /// \sa Reference
    1.43 -      /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
    1.44 -      /// needs some extra attention!
    1.45        /// \todo Wrong documentation
    1.46        template<class T> 
    1.47        class UEdgeMap : public ReadWriteMap<UEdge,T>
     2.1 --- a/lemon/concepts/ugraph.h	Tue Oct 24 17:19:16 2006 +0000
     2.2 +++ b/lemon/concepts/ugraph.h	Thu Oct 26 06:54:13 2006 +0000
     2.3 @@ -505,8 +505,6 @@
     2.4        /// 
     2.5        /// ReadWrite map of the nodes to type \c T.
     2.6        /// \sa Reference
     2.7 -      /// \warning Making maps that can handle bool type (NodeMap<bool>)
     2.8 -      /// needs some extra attention!
     2.9        template<class T> 
    2.10        class NodeMap : public ReadWriteMap< Node, T >
    2.11        {
    2.12 @@ -531,8 +529,6 @@
    2.13        ///
    2.14        /// Reference map of the directed edges to type \c T.
    2.15        /// \sa Reference
    2.16 -      /// \warning Making maps that can handle bool type (EdgeMap<bool>)
    2.17 -      /// needs some extra attention!
    2.18        template<class T> 
    2.19        class EdgeMap : public ReadWriteMap<Edge,T>
    2.20        {
    2.21 @@ -556,8 +552,6 @@
    2.22  
    2.23        /// Reference map of the edges to type \c T.
    2.24        /// \sa Reference
    2.25 -      /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
    2.26 -      /// needs some extra attention!
    2.27        template<class T> 
    2.28        class UEdgeMap : public ReadWriteMap<UEdge,T>
    2.29        {
     3.1 --- a/lemon/smart_graph.h	Tue Oct 24 17:19:16 2006 +0000
     3.2 +++ b/lemon/smart_graph.h	Thu Oct 26 06:54:13 2006 +0000
     3.3 @@ -388,8 +388,6 @@
     3.4    ///
     3.5    /// \sa concepts::UGraph.
     3.6    ///
     3.7 -  /// \todo Snapshot hasn't been implemented yet.
     3.8 -  ///
     3.9    class SmartUGraph : public ExtendedSmartUGraphBase {
    3.10    private:
    3.11