test/bellman_ford_test.cc
changeset 781 6f10c6ec5a21
parent 699 75325dfccf38
child 791 4e3484a2e90c
     1.1 --- a/test/bellman_ford_test.cc	Sat Sep 26 07:21:54 2009 +0200
     1.2 +++ b/test/bellman_ford_test.cc	Mon Sep 28 15:53:20 2009 +0200
     1.3 @@ -96,6 +96,7 @@
     1.4      d  = const_bf_test.distMap();
     1.5      p  = const_bf_test.predMap();
     1.6      pp = const_bf_test.path(t);
     1.7 +    pp = const_bf_test.negativeCycle();
     1.8      
     1.9      for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {}
    1.10    }
    1.11 @@ -132,6 +133,7 @@
    1.12      s  = bf_test.predNode(t);
    1.13      b  = bf_test.reached(t);
    1.14      pp = bf_test.path(t);
    1.15 +    pp = bf_test.negativeCycle();
    1.16    }
    1.17  }
    1.18