COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/smart_graph.h

    r780 r736  
    498498    }
    499499
    500     static void next(Node& node) {
     500    void next(Node& node) const {
    501501      --node._id;
    502502    }
     
    506506    }
    507507
    508     static void next(Arc& arc) {
     508    void next(Arc& arc) const {
    509509      --arc._id;
    510510    }
     
    514514    }
    515515
    516     static void next(Edge& arc) {
     516    void next(Edge& arc) const {
    517517      --arc._id;
    518518    }
Note: See TracChangeset for help on using the changeset viewer.