lemon/bits/path_dump.h
branch1.0
changeset 415 7faa990932a3
parent 413 1f2a734581f8
child 427 c59bdcc8e33e
     1.1 --- a/lemon/bits/path_dump.h	Sun Mar 07 09:40:30 2010 +0000
     1.2 +++ b/lemon/bits/path_dump.h	Mon Apr 12 16:49:51 2010 +0200
     1.3 @@ -46,7 +46,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 @@ -120,7 +120,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 {