lemon/bits/graph_extender.h
branch1.2
changeset 1007 00769a5f0f5d
parent 778 a143f19f465b
parent 963 761fe0846f49
equal deleted inserted replaced
13:8d3bac8bc592 15:9b1d4a6499f7
   585 
   585 
   586     // Base node of the iterator
   586     // Base node of the iterator
   587     //
   587     //
   588     // Returns the base node of the iterator
   588     // Returns the base node of the iterator
   589     Node baseNode(const IncEdgeIt &edge) const {
   589     Node baseNode(const IncEdgeIt &edge) const {
   590       return edge._direction ? u(edge) : v(edge);
   590       return edge._direction ? this->u(edge) : this->v(edge);
   591     }
   591     }
   592     // Running node of the iterator
   592     // Running node of the iterator
   593     //
   593     //
   594     // Returns the running node of the iterator
   594     // Returns the running node of the iterator
   595     Node runningNode(const IncEdgeIt &edge) const {
   595     Node runningNode(const IncEdgeIt &edge) const {
   596       return edge._direction ? v(edge) : u(edge);
   596       return edge._direction ? this->v(edge) : this->u(edge);
   597     }
   597     }
   598 
   598 
   599     // Mappable extension
   599     // Mappable extension
   600 
   600 
   601     template <typename _Value>
   601     template <typename _Value>