COIN-OR::LEMON - Graph Library

Changeset 916:c0734a8c282c in lemon-0.x for src/test


Ignore:
Timestamp:
09/28/04 18:40:55 (20 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1227
Message:

Fix InEdgeIt? and OutEdgeIt? in the symmetric graphs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_test.h

    r906 r916  
    299299      for(int i=0;i<nn;i++) {
    300300        check(e!=INVALID,"Wrong OutEdge list linking.");
     301        check(n==G.tail(e), "Wrong OutEdge list linking.");
    301302        ++e;
    302303      }
     
    311312      for(int i=0;i<nn;i++) {
    312313        check(e!=INVALID,"Wrong InEdge list linking.");
     314        check(n==G.head(e), "Wrong InEdge list linking.");
    313315        ++e;
    314316      }
Note: See TracChangeset for help on using the changeset viewer.