# HG changeset patch # User deba # Date 1157367716 0 # Node ID 284a9ad118dd94074e47356c05522159753b6575 # Parent e2bf51eab7f73d5e89f36e322d73a311f44b99ed Bug fix in countANodes/countBNodes diff -r e2bf51eab7f7 -r 284a9ad118dd lemon/graph_utils.h --- a/lemon/graph_utils.h Wed Aug 30 16:08:03 2006 +0000 +++ b/lemon/graph_utils.h Mon Sep 04 11:01:56 2006 +0000 @@ -171,7 +171,7 @@ enable_if::type> { static int count(const Graph &g) { - return g.nodeNum(); + return g.aNodeNum(); } }; } @@ -204,7 +204,7 @@ enable_if::type> { static int count(const Graph &g) { - return g.nodeNum(); + return g.bNodeNum(); } }; }