COIN-OR::LEMON - Graph Library

Changeset 1564:16d316199cf6 in lemon-0.x


Ignore:
Timestamp:
07/18/05 17:05:50 (19 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2063
Message:

Solving ambigous function call

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/iterable_graph_extender.h

    r1448 r1564  
    125125    /// \todo Document in the concept!
    126126    Node baseNode(const OutEdgeIt &e) const {
    127       return source(e);
     127      return Parent::source((Edge)e);
    128128    }
    129129    /// Running node of the iterator
     
    134134    /// \todo Document in the concept!
    135135    Node runningNode(const OutEdgeIt &e) const {
    136       return target(e);
     136      return Parent::target((Edge)e);
    137137    }
    138138
     
    143143    /// \todo Document in the concept!
    144144    Node baseNode(const InEdgeIt &e) const {
    145       return target(e);
     145      return Parent::target((Edge)e);
    146146    }
    147147    /// Running node of the iterator
     
    152152    /// \todo Document in the concept!
    153153    Node runningNode(const InEdgeIt &e) const {
    154       return source(e);
     154      return Parent::source((Edge)e);
    155155    }
    156156
Note: See TracChangeset for help on using the changeset viewer.