COIN-OR::LEMON - Graph Library

Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/concept/graph.h


Ignore:
Timestamp:
02/02/06 18:43:24 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2521
Message:
  • workaround for a Doxygen 1.4.6 bug
  • other doc fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concept/graph.h

    r1909 r1946  
    193193      /// Its usage is quite simple, for example you can count the number
    194194      /// of nodes in graph \c g of type \c Graph like this:
    195       /// \code
     195      ///\code
    196196      /// int count=0;
    197197      /// for (Graph::NodeIt n(g); n!=INVALID; ++n) ++count;
    198       /// \endcode
     198      ///\endcode
    199199      class NodeIt : public Node {
    200200      public:
     
    286286      /// of outgoing edges of a node \c n
    287287      /// in graph \c g of type \c Graph as follows.
    288       /// \code
     288      ///\code
    289289      /// int count=0;
    290290      /// for (Graph::OutEdgeIt e(g, n); e!=INVALID; ++e) ++count;
    291       /// \endcode
     291      ///\endcode
    292292   
    293293      class OutEdgeIt : public Edge {
     
    333333      /// of outgoing edges of a node \c n
    334334      /// in graph \c g of type \c Graph as follows.
    335       /// \code
     335      ///\code
    336336      /// int count=0;
    337337      /// for(Graph::InEdgeIt e(g, n); e!=INVALID; ++e) ++count;
    338       /// \endcode
     338      ///\endcode
    339339
    340340      class InEdgeIt : public Edge {
     
    377377      /// Its usage is quite simple, for example you can count the number
    378378      /// of edges in a graph \c g of type \c Graph as follows:
    379       /// \code
     379      ///\code
    380380      /// int count=0;
    381381      /// for(Graph::EdgeIt e(g); e!=INVALID; ++e) ++count;
    382       /// \endcode
     382      ///\endcode
    383383      class EdgeIt : public Edge {
    384384      public:
Note: See TracChangeset for help on using the changeset viewer.