COIN-OR::LEMON - Graph Library

Changeset 349:b0f74ca2e3ac in lemon-1.0


Ignore:
Timestamp:
12/12/08 21:37:22 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Children:
350:d5cfcff85dfd, 351:561be42c4b99
Phase:
public
Message:

Bug fix in ConEdgeIt? (#195)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/core.h

    r327 r349  
    11711171    /// Construct a new ConEdgeIt iterating on the edges that
    11721172    /// connects nodes \c u and \c v.
    1173     ConEdgeIt(const Graph& g, Node u, Node v) : _graph(g) {
    1174       Parent::operator=(findEdge(_graph, u, v));
     1173    ConEdgeIt(const Graph& g, Node u, Node v) : _graph(g), _u(u), _v(v) {
     1174      Parent::operator=(findEdge(_graph, _u, _v));
    11751175    }
    11761176
     
    11841184    /// It increments the iterator and gives back the next edge.
    11851185    ConEdgeIt& operator++() {
    1186       Parent::operator=(findEdge(_graph, _graph.u(*this),
    1187                                  _graph.v(*this), *this));
     1186      Parent::operator=(findEdge(_graph, _u, _v, *this));
    11881187      return *this;
    11891188    }
    11901189  private:
    11911190    const Graph& _graph;
     1191    Node _u, _v;
    11921192  };
    11931193
Note: See TracChangeset for help on using the changeset viewer.