COIN-OR::LEMON - Graph Library

Changeset 168:27fbd1559fb7 in lemon-0.x for src/work/bfs_iterator.hh


Ignore:
Timestamp:
03/11/04 15:15:07 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@239
Message:

graph wrapper improvements, blocking flow on fly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/bfs_iterator.hh

    r158 r168  
    563563    ~BfsIterator4() { if (own_reached_map) delete &reached; }
    564564    void pushAndSetReached(NodeIt s) {
     565      //std::cout << "mimi" << &reached << std::endl;
    565566      reached.set(s, true);
     567      //std::cout << "mumus" << std::endl;
    566568      if (bfs_queue.empty()) {
     569        //std::cout << "bibi1" << std::endl;
    567570        bfs_queue.push(s);
     571        //std::cout << "zizi" << std::endl;
    568572        G.getFirst(actual_edge, s);
     573        //std::cout << "kiki" << std::endl;
    569574        if (G.valid(actual_edge)/*.valid()*/) {
    570575          NodeIt w=G.bNode(actual_edge);
     
    578583        }
    579584      } else {
     585        //std::cout << "bibi2" << std::endl;
    580586        bfs_queue.push(s);
    581587      }
Note: See TracChangeset for help on using the changeset viewer.