diff -r 60a96465dc49 -r d4e911acef3d src/lemon/map_bits.h --- a/src/lemon/map_bits.h Mon Oct 04 16:03:25 2004 +0000 +++ b/src/lemon/map_bits.h Mon Oct 04 17:13:21 2004 +0000 @@ -54,10 +54,10 @@ template struct KeyInfo { static int maxId(const Graph& graph) { - return graph.maxEdgeId() >> 1; + return graph.maxSymEdgeId(); } - static int id(const Graph& graph, const typename Graph::Edge& edge) { - return graph.id(edge) >> 1; + static int id(const Graph& graph, const typename Graph::SymEdge& edge) { + return graph.id(edge); } };