lemon/euler.h
changeset 1761 896464fe9fbb
parent 1738 470aa67893f5
child 1769 a67ec111236c
     1.1 --- a/lemon/euler.h	Fri Nov 04 12:01:40 2005 +0000
     1.2 +++ b/lemon/euler.h	Fri Nov 04 13:20:24 2005 +0000
     1.3 @@ -101,7 +101,6 @@
     1.4      ///Postfix incrementation
     1.5      
     1.6      ///\warning This gives back an Edge, not an EulerIt!
     1.7 -    ///\todo Is this what we want?
     1.8      Edge operator++(int) 
     1.9      {
    1.10        Edge e=*this;
    1.11 @@ -131,7 +130,7 @@
    1.12    }
    1.13    template<class Graph>
    1.14    typename disable_if<typename Graph::UndirTag,bool>::type
    1.15 -  isEuler(const Graph &g) 
    1.16 +  euler(const Graph &g) 
    1.17    {
    1.18      for(typename Graph::NodeIt n(g);n!=INVALID;++n)
    1.19        if(countInEdges(g,n)!=countOutEdges(g,n)) return false;