[Lemon-commits] [lemon_svn] deba: r2912 - hugo/trunk/lemon/bits
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:12 CET 2006
Author: deba
Date: Mon Sep 4 13:02:31 2006
New Revision: 2912
Modified:
hugo/trunk/lemon/bits/base_extender.h
Log:
Bug fix in UndirGraphAdaptor
Modified: hugo/trunk/lemon/bits/base_extender.h
==============================================================================
--- hugo/trunk/lemon/bits/base_extender.h (original)
+++ hugo/trunk/lemon/bits/base_extender.h Mon Sep 4 13:02:31 2006
@@ -202,7 +202,7 @@
}
UEdge uEdgeFromId(int id) const {
- return Parent::edgeFromId(id >> 1);
+ return Parent::edgeFromId(id);
}
int id(const Node &n) const {
More information about the Lemon-commits
mailing list