diff -r 77704bf2a4ae -r e26ad33d1fbc lemon/bits/path_dump.h --- a/lemon/bits/path_dump.h Tue Apr 06 06:52:48 2010 +0200 +++ b/lemon/bits/path_dump.h Mon Apr 12 17:00:05 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 {