[Lemon-commits] Alpar Juttner: Merge bugfix #366 to branch 1.2
Lemon HG
hg at lemon.cs.elte.hu
Mon Apr 12 17:10:15 CEST 2010
details: http://lemon.cs.elte.hu/hg/lemon/rev/e26ad33d1fbc
changeset: 974:e26ad33d1fbc
user: Alpar Juttner <alpar [at] cs.elte.hu>
date: Mon Apr 12 17:00:05 2010 +0200
description:
Merge bugfix #366 to branch 1.2
diffstat:
lemon/bits/path_dump.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff --git a/lemon/bits/path_dump.h b/lemon/bits/path_dump.h
--- a/lemon/bits/path_dump.h
+++ b/lemon/bits/path_dump.h
@@ -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 {
More information about the Lemon-commits
mailing list