COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
11/04/05 15:48:10 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2295
Message:

pred => predEdge rename

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/all_pairs_shortest_path_test.cc

    r1745 r1763  
    8989          check(johnson.dist(it, jt) ==
    9090                johnson.dist(it, johnson.predNode(it, jt)) +
    91                 length[johnson.pred(it, jt)],
     91                length[johnson.predEdge(it, jt)],
    9292                "Wrong edge in all pairs shortest path");
    9393          check(fibJohnson.dist(it, jt) ==
    9494                fibJohnson.dist(it, fibJohnson.predNode(it, jt)) +
    95                 length[fibJohnson.pred(it, jt)],
     95                length[fibJohnson.predEdge(it, jt)],
    9696                "Wrong edge in all pairs shortest path");
    9797          check(floyd.dist(it, jt) ==
    9898                floyd.dist(it, floyd.predNode(it, jt)) +
    99                 length[floyd.pred(it, jt)],
     99                length[floyd.predEdge(it, jt)],
    100100                "Wrong edge in all pairs shortest path");
    101101        }
Note: See TracChangeset for help on using the changeset viewer.