COIN-OR::LEMON - Graph Library

Changeset 736:ba76a7f56b23 in lemon-0.x for src


Ignore:
Timestamp:
07/23/04 18:58:02 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@993
Message:

Marci (and the other developpers),
please write exhaustive test code to avoid this kind of bugs...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/hugo/graph_wrapper.h

    r660 r736  
    208208    void clear() const { graph->clear(); }
    209209   
    210     bool forward(const Edge& e) const { graph->forward(e); }
    211     bool backward(const Edge& e) const { graph->backward(e); }
     210    bool forward(const Edge& e) const { return graph->forward(e); }
     211    bool backward(const Edge& e) const { return graph->backward(e); }
    212212   
    213213    Edge opposite(const Edge& e) const { Edge(graph->opposite(e)); }
Note: See TracChangeset for help on using the changeset viewer.