diff -r 2eebc8f7dca5 -r 17e36e175725 lemon/bits/path_dump.h --- a/lemon/bits/path_dump.h Tue Nov 01 08:24:30 2011 +0100 +++ b/lemon/bits/path_dump.h Tue Dec 20 17:35:45 2011 +0100 @@ -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 {