COIN-OR::LEMON - Graph Library

Changeset 2082:626939628b4a in lemon-0.x


Ignore:
Timestamp:
05/15/06 11:44:35 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2747
Message:

Bug fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/topology.h

    r2038 r2082  
    246246  bool stronglyConnected(const Graph& graph) {
    247247    checkConcept<concept::StaticGraph, Graph>();
    248     if (NodeIt(graph) == INVALID) return true;
    249248
    250249    typedef typename Graph::Node Node;
    251250    typedef typename Graph::NodeIt NodeIt;
     251
     252    if (NodeIt(graph) == INVALID) return true;
    252253
    253254    using namespace _topology_bits;
Note: See TracChangeset for help on using the changeset viewer.