# HG changeset patch # User Alpar Juttner # Date 1271083968 -7200 # Node ID 290f3ca599d693626ca7d1fcd718e1562573f3c9 # Parent 8af504c71ac43e631cd34e8e8b1b3ef4a7e1c043# Parent 1aa7eba26af5b7d5d7962840670e1d73299ce7ee Merge bugfix #366 to branch 1.1 diff -r 8af504c71ac4 -r 290f3ca599d6 lemon/bits/path_dump.h --- a/lemon/bits/path_dump.h Tue Apr 06 06:43:04 2010 +0200 +++ b/lemon/bits/path_dump.h Mon Apr 12 16:52:48 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 {