COIN-OR::LEMON - Graph Library

Changeset 1694:6d81e6f7a88d in lemon-0.x for lemon/dfs.h


Ignore:
Timestamp:
10/03/05 12:11:29 (19 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2220
Message:

Fixing naming conventions
Temporarly bugfix with named-parameters
Removing dead codes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/dfs.h

    r1666 r1694  
    337337    ///
    338338    template <class T>
    339     class DefProcessedMap : public Dfs< Graph,
    340                                         DefProcessedMapTraits<T> > { };
     339    struct DefProcessedMap : public Dfs< Graph, DefProcessedMapTraits<T> > {
     340      typedef Dfs< Graph, DefProcessedMapTraits<T> > Dfs;
     341    };
    341342   
    342343    struct DefGraphProcessedMapTraits : public Traits {
     
    564565    ///\return The next edge to be processed or INVALID if the stack is
    565566    /// empty.
    566     OutEdgeIt NextEdge()
     567    OutEdgeIt nextEdge()
    567568    {
    568569      return _stack_head>=0?_stack[_stack_head]:INVALID;
    569570    }
    570      
     571
    571572    ///\brief Returns \c false if there are nodes
    572573    ///to be processed in the queue
Note: See TracChangeset for help on using the changeset viewer.