gravatar
deba@inf.elte.hu
deba@inf.elte.hu
Fixing bfs test (Ticket #128)
0 1 0
default
1 file changed with 3 insertions and 3 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -97,15 +97,15 @@
97 97
  check(pathTarget(G, p) == t,"path() found a wrong path.");
98 98

	
99 99

	
100
  for(ArcIt e(G); e==INVALID; ++e) {
100
  for(ArcIt e(G); e!=INVALID; ++e) {
101 101
    Node u=G.source(e);
102 102
    Node v=G.target(e);
103 103
    check( !bfs_test.reached(u) ||
104
           (bfs_test.dist(v) > bfs_test.dist(u)+1),
104
           (bfs_test.dist(v) <= bfs_test.dist(u)+1),
105 105
           "Wrong output.");
106 106
  }
107 107

	
108
  for(NodeIt v(G); v==INVALID; ++v) {
108
  for(NodeIt v(G); v!=INVALID; ++v) {
109 109
    check(bfs_test.reached(v),"Each node should be reached.");
110 110
    if ( bfs_test.predArc(v)!=INVALID ) {
111 111
      Arc e=bfs_test.predArc(v);
0 comments (0 inline)