COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
10/02/07 14:34:43 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3324
Message:

New developers page
The participation period should be included

Bug fix in doc related to Graph concpets

Removing some todos!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/graph_components.h

    r2474 r2485  
    14831483      template <typename _Value>
    14841484      class NodeMap : public GraphMap<Graph, Node, _Value> {
    1485       private:
    1486         NodeMap();
    14871485      public:
    14881486        typedef GraphMap<MappableGraphComponent, Node, _Value> Parent;
     
    14911489        ///
    14921490        /// Construct a new map for the graph.
    1493         /// \todo call the right parent class constructor
    14941491        explicit NodeMap(const MappableGraphComponent& graph)
    14951492          : Parent(graph) {}
     
    15231520      template <typename _Value>
    15241521      class EdgeMap : public GraphMap<Graph, Edge, _Value> {
    1525       private:
    1526         EdgeMap();
    15271522      public:
    15281523        typedef GraphMap<MappableGraphComponent, Edge, _Value> Parent;
     
    15311526        ///
    15321527        /// Construct a new map for the graph.
    1533         /// \todo call the right parent class constructor
    15341528        explicit EdgeMap(const MappableGraphComponent& graph)
    15351529          : Parent(graph) {}
     
    16281622        ///
    16291623        /// Construct a new map for the graph.
    1630         /// \todo call the right parent class constructor
    16311624        explicit UEdgeMap(const MappableUGraphComponent& graph)
    16321625          : Parent(graph) {}
     
    17131706        ///
    17141707        /// Construct a new map for the graph.
    1715         /// \todo call the right parent class constructor
    17161708        explicit ANodeMap(const MappableBpUGraphComponent& graph)
    17171709          : Parent(graph) {}
     
    17511743        ///
    17521744        /// Construct a new map for the graph.
    1753         /// \todo call the right parent class constructor
    17541745        explicit BNodeMap(const MappableBpUGraphComponent& graph)
    17551746          : Parent(graph) {}
Note: See TracChangeset for help on using the changeset viewer.