COIN-OR::LEMON - Graph Library

Changeset 2186:284a9ad118dd in lemon-0.x


Ignore:
Timestamp:
09/04/06 13:01:56 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2911
Message:

Bug fix in countANodes/countBNodes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_utils.h

    r2155 r2186  
    172172    {
    173173      static int count(const Graph &g) {
    174         return g.nodeNum();
     174        return g.aNodeNum();
    175175      }
    176176    };   
     
    205205    {
    206206      static int count(const Graph &g) {
    207         return g.nodeNum();
     207        return g.bNodeNum();
    208208      }
    209209    };   
Note: See TracChangeset for help on using the changeset viewer.