diff -r 6dd226d3dcba -r ca4059d63236 lemon/bits/path_dump.h --- a/lemon/bits/path_dump.h Tue Apr 06 07:04:38 2010 +0200 +++ b/lemon/bits/path_dump.h Mon Apr 12 17:05:49 2010 +0200 @@ -49,7 +49,7 @@ } bool empty() const { - return predMap[target] != INVALID; + return predMap[target] == INVALID; } class RevArcIt { @@ -123,7 +123,7 @@ } bool empty() const { - return source != target; + return predMatrixMap(source, target) == INVALID; } class RevArcIt {