Changeset 90:6a14044089d9 in lemon-0.x for src/work/list_graph.hh
- Timestamp:
- 02/17/04 13:26:25 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@117
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/list_graph.hh
r86 r90 381 381 class EachNodeIt : public NodeIt { 382 382 friend class ListGraph; 383 protected: 383 //protected: 384 public: //for alpar 384 385 EachNodeIt(const ListGraph& G) : NodeIt(G._first_node) { } 385 386 public: … … 419 420 class EachEdgeIt : public EdgeIt { 420 421 friend class ListGraph; 421 protected: 422 //protected: 423 public: //for alpar 422 424 EachEdgeIt(const ListGraph& G) { 423 425 node_item* v=G._first_node; … … 439 441 friend class ListGraph; 440 442 //node_item* v; 441 protected: 443 //protected: 444 public: //for alpar 442 445 OutEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; } 443 446 public: … … 453 456 friend class ListGraph; 454 457 //node_item* v; 455 protected: 458 //protected: 459 public: //for alpar 456 460 InEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; } 457 461 public: … … 468 472 bool out_or_in; //1 iff out, 0 iff in 469 473 //node_item* v; 470 protected: 474 //protected: 475 public: //for alpar 471 476 SymEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ { 472 477 out_or_in=1;
Note: See TracChangeset
for help on using the changeset viewer.