[Lemon-commits] [lemon_svn] deba: r2911 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:11 CET 2006


Author: deba
Date: Mon Sep  4 13:01:56 2006
New Revision: 2911

Modified:
   hugo/trunk/lemon/graph_utils.h

Log:
Bug fix in countANodes/countBNodes



Modified: hugo/trunk/lemon/graph_utils.h
==============================================================================
--- hugo/trunk/lemon/graph_utils.h	(original)
+++ hugo/trunk/lemon/graph_utils.h	Mon Sep  4 13:01:56 2006
@@ -171,7 +171,7 @@
       enable_if<typename Graph::NodeNumTag, void>::type> 
     {
       static int count(const Graph &g) {
-        return g.nodeNum();
+        return g.aNodeNum();
       }
     };    
   }
@@ -204,7 +204,7 @@
       enable_if<typename Graph::NodeNumTag, void>::type> 
     {
       static int count(const Graph &g) {
-        return g.nodeNum();
+        return g.bNodeNum();
       }
     };    
   }



More information about the Lemon-commits mailing list