[Lemon-commits] [lemon_svn] deba: r2598 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:53:49 CET 2006
Author: deba
Date: Thu Mar 2 15:22:03 2006
New Revision: 2598
Modified:
hugo/trunk/lemon/full_graph.h
hugo/trunk/lemon/list_graph.h
hugo/trunk/lemon/smart_graph.h
Log:
Bugfix in bpugraph
Modified: hugo/trunk/lemon/full_graph.h
==============================================================================
--- hugo/trunk/lemon/full_graph.h (original)
+++ hugo/trunk/lemon/full_graph.h Thu Mar 2 15:22:03 2006
@@ -606,7 +606,7 @@
static int aNodeId(const Node& node) {
return node.id >> 1;
}
- static Node fromANodeId(int id, Node) {
+ static Node fromANodeId(int id) {
return Node(id << 1);
}
int maxANodeId() const {
Modified: hugo/trunk/lemon/list_graph.h
==============================================================================
--- hugo/trunk/lemon/list_graph.h (original)
+++ hugo/trunk/lemon/list_graph.h Thu Mar 2 15:22:03 2006
@@ -811,7 +811,7 @@
static int aNodeId(const Node& node) {
return node.id >> 1;
}
- static Node fromANodeId(int id, Node) {
+ static Node fromANodeId(int id) {
return Node(id << 1);
}
int maxANodeId() const {
Modified: hugo/trunk/lemon/smart_graph.h
==============================================================================
--- hugo/trunk/lemon/smart_graph.h (original)
+++ hugo/trunk/lemon/smart_graph.h Thu Mar 2 15:22:03 2006
@@ -504,7 +504,7 @@
static int aNodeId(const Node& node) {
return node.id >> 1;
}
- static Node fromANodeId(int id, Node) {
+ static Node fromANodeId(int id) {
return Node(id << 1);
}
int maxANodeId() const {
More information about the Lemon-commits
mailing list