Merge bugfix #366 to branch 1.1 1.1
authorAlpar Juttner <alpar@cs.elte.hu>
Mon, 12 Apr 2010 16:52:48 +0200
branch1.1
changeset 728290f3ca599d6
parent 725 8af504c71ac4
parent 727 1aa7eba26af5
child 730 4f8b22521b4a
Merge bugfix #366 to branch 1.1
lemon/bits/path_dump.h
     1.1 --- a/lemon/bits/path_dump.h	Tue Apr 06 06:43:04 2010 +0200
     1.2 +++ b/lemon/bits/path_dump.h	Mon Apr 12 16:52:48 2010 +0200
     1.3 @@ -49,7 +49,7 @@
     1.4      }
     1.5  
     1.6      bool empty() const {
     1.7 -      return predMap[target] != INVALID;
     1.8 +      return predMap[target] == INVALID;
     1.9      }
    1.10  
    1.11      class RevArcIt {
    1.12 @@ -123,7 +123,7 @@
    1.13      }
    1.14  
    1.15      bool empty() const {
    1.16 -      return source != target;
    1.17 +      return predMatrixMap(source, target) == INVALID;
    1.18      }
    1.19  
    1.20      class RevArcIt {