COIN-OR::LEMON - Graph Library

Changeset 572:e9ed28955421 in lemon-0.x


Ignore:
Timestamp:
05/07/04 10:48:11 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@747
Message:

Edge opposite(const Edge&) in BidirGaphWrapper?<Graph>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/graph_wrapper.h

    r569 r572  
    807807              this->graph->bNode(e.out)); }
    808808
     809    /// Gives back the opposite edge.
     810    Edge opposite(const Edge& e) const {
     811      Edge f=e;
     812      f.backward=!f.backward;
     813      return f;
     814    }
     815
    809816//    int nodeNum() const { return graph->nodeNum(); }
    810817    //FIXME
Note: See TracChangeset for help on using the changeset viewer.