COIN-OR::LEMON - Graph Library

Changeset 2485:88aa7870756a in lemon-0.x for lemon/concepts


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!

Location:
lemon/concepts
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/bpugraph.h

    r2474 r2485  
    3434  namespace concepts {
    3535
    36     /// \addtogroup graph_concepts
    37     /// @{
     36    /// \ingroup graph_concepts
    3837    ///
    3938    /// \brief Class describing the concept of Bipartite Undirected Graphs.
     
    999998    };
    1000999
    1001 
    1002     /// @}
    1003 
    10041000  }
    10051001
  • lemon/concepts/graph.h

    r2474 r2485  
    3333  namespace concepts {
    3434
    35     /// \addtogroup graph_concepts
    36     /// @{
     35    /// \ingroup graph_concepts
    3736    ///
    3837    /// \brief Class describing the concept of Directed Graphs.
     
    447446    };
    448447   
    449     // @}
    450448  } //namespace concepts 
    451449} //namespace lemon
  • 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) {}
  • lemon/concepts/ugraph.h

    r2474 r2485  
    3131  namespace concepts {
    3232
    33     /// \addtogroup graph_concepts
    34     /// @{
     33    /// \ingroup graph_concepts
    3534    ///
    3635    /// \brief Class describing the concept of Undirected Graphs.
     
    697696    };
    698697
    699     /// @}
    700 
    701698  }
    702699
Note: See TracChangeset for help on using the changeset viewer.