COIN-OR::LEMON - Graph Library

Changeset 90:6a14044089d9 in lemon-0.x for src/work


Ignore:
Timestamp:
02/17/04 13:26:25 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@117
Message:

for alpar's sake...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/list_graph.hh

    r86 r90  
    381381    class EachNodeIt : public NodeIt {
    382382      friend class ListGraph;
    383     protected:
     383      //protected:
     384    public: //for alpar
    384385      EachNodeIt(const ListGraph& G) : NodeIt(G._first_node) { }
    385386    public:
     
    419420    class EachEdgeIt : public EdgeIt {
    420421      friend class ListGraph;
    421     protected:
     422      //protected:
     423    public: //for alpar
    422424      EachEdgeIt(const ListGraph& G) {
    423425        node_item* v=G._first_node;
     
    439441      friend class ListGraph;
    440442      //node_item* v;
    441     protected:
     443      //protected:
     444    public: //for alpar
    442445      OutEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; }
    443446    public:
     
    453456      friend class ListGraph;
    454457      //node_item* v;
    455     protected:
     458      //protected:
     459    public: //for alpar
    456460      InEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; }
    457461    public:
     
    468472      bool out_or_in; //1 iff out, 0 iff in
    469473      //node_item* v;
    470     protected:
     474      //protected:
     475    public: //for alpar
    471476      SymEdgeIt(const NodeIt& _v) /*: v(_v.node)*/ {
    472477        out_or_in=1;
Note: See TracChangeset for help on using the changeset viewer.