Changeset 168:27fbd1559fb7 in lemon-0.x for src/work/bfs_iterator.hh
- Timestamp:
- 03/11/04 15:15:07 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@239
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/bfs_iterator.hh
r158 r168 563 563 ~BfsIterator4() { if (own_reached_map) delete &reached; } 564 564 void pushAndSetReached(NodeIt s) { 565 //std::cout << "mimi" << &reached << std::endl; 565 566 reached.set(s, true); 567 //std::cout << "mumus" << std::endl; 566 568 if (bfs_queue.empty()) { 569 //std::cout << "bibi1" << std::endl; 567 570 bfs_queue.push(s); 571 //std::cout << "zizi" << std::endl; 568 572 G.getFirst(actual_edge, s); 573 //std::cout << "kiki" << std::endl; 569 574 if (G.valid(actual_edge)/*.valid()*/) { 570 575 NodeIt w=G.bNode(actual_edge); … … 578 583 } 579 584 } else { 585 //std::cout << "bibi2" << std::endl; 580 586 bfs_queue.push(s); 581 587 }
Note: See TracChangeset
for help on using the changeset viewer.