COIN-OR::LEMON - Graph Library

Changeset 2261:c52b572c294f in lemon-0.x for lemon/concepts


Ignore:
Timestamp:
10/26/06 08:54:13 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3019
Message:

Doc update

Location:
lemon/concepts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/bpugraph.h

    r2260 r2261  
    713713      /// ReadWrite map of the nodes to type \c T.
    714714      /// \sa Reference
    715       /// \warning Making maps that can handle bool type (NodeMap<bool>)
    716       /// needs some extra attention!
    717715      /// \todo Wrong documentation
    718716      template<class T>
     
    742740      /// ReadWrite map of the ANodes to type \c T.
    743741      /// \sa Reference
    744       /// \warning Making maps that can handle bool type (NodeMap<bool>)
    745       /// needs some extra attention!
    746742      /// \todo Wrong documentation
    747743      template<class T>
     
    771767      /// ReadWrite map of the BNodes to type \c T.
    772768      /// \sa Reference
    773       /// \warning Making maps that can handle bool type (NodeMap<bool>)
    774       /// needs some extra attention!
    775769      /// \todo Wrong documentation
    776770      template<class T>
     
    800794      /// Reference map of the directed edges to type \c T.
    801795      /// \sa Reference
    802       /// \warning Making maps that can handle bool type (EdgeMap<bool>)
    803       /// needs some extra attention!
    804796      /// \todo Wrong documentation
    805797      template<class T>
     
    828820      /// Reference map of the edges to type \c T.
    829821      /// \sa Reference
    830       /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
    831       /// needs some extra attention!
    832822      /// \todo Wrong documentation
    833823      template<class T>
  • lemon/concepts/ugraph.h

    r2260 r2261  
    506506      /// ReadWrite map of the nodes to type \c T.
    507507      /// \sa Reference
    508       /// \warning Making maps that can handle bool type (NodeMap<bool>)
    509       /// needs some extra attention!
    510508      template<class T>
    511509      class NodeMap : public ReadWriteMap< Node, T >
     
    532530      /// Reference map of the directed edges to type \c T.
    533531      /// \sa Reference
    534       /// \warning Making maps that can handle bool type (EdgeMap<bool>)
    535       /// needs some extra attention!
    536532      template<class T>
    537533      class EdgeMap : public ReadWriteMap<Edge,T>
     
    557553      /// Reference map of the edges to type \c T.
    558554      /// \sa Reference
    559       /// \warning Making maps that can handle bool type (UEdgeMap<bool>)
    560       /// needs some extra attention!
    561555      template<class T>
    562556      class UEdgeMap : public ReadWriteMap<UEdge,T>
Note: See TracChangeset for help on using the changeset viewer.