Fix PredMapPath::empty() (#366)
authorGabor Retvari <retvari@tmit.bme.hu>
Sun, 11 Apr 2010 22:28:42 +0200
changeset 8851f2a734581f8
parent 837 f58e01094738
child 886 1aa7eba26af5
Fix PredMapPath::empty() (#366)
lemon/bits/path_dump.h
     1.1 --- a/lemon/bits/path_dump.h	Thu Feb 11 10:02:11 2010 +0100
     1.2 +++ b/lemon/bits/path_dump.h	Sun Apr 11 22:28:42 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 {