COIN-OR::LEMON - Graph Library

Changeset 652:4dfa1f79bf3e in lemon-0.x


Ignore:
Timestamp:
05/20/04 19:21:55 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@852
Message:

misc

Location:
src/work/marci
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/graph_concept.h

    r651 r652  
    457457  };
    458458
    459   class FullFeatureGraphConcept : public NodeIterableGraphConcept,
    460                                   public EdgeIterableGraphConcept,
    461                                   public OutEdgeIterableGraphConcept,
    462                                   public InEdgeIterableGraphConcept {
     459  class FullFeatureGraphConcept : virtual public NodeIterableGraphConcept,
     460                                  virtual public EdgeIterableGraphConcept,
     461                                  virtual public OutEdgeIterableGraphConcept,
     462                                  virtual public InEdgeIterableGraphConcept,
     463                                  virtual public NodeCountingGraphConcept {
    463464  public:
    464465    FullFeatureGraphConcept() { }
     466    using EdgeIterableGraphConcept::next;
     467    using NodeIterableGraphConcept::next;
     468    using OutEdgeIterableGraphConcept::next;   
     469    using InEdgeIterableGraphConcept::next;
    465470  };
    466471 
  • src/work/marci/max_flow_demo.cc

    r651 r652  
    6767
    6868  Graph g;
     69
    6970  Node s, t;
    7071  Graph::EdgeMap<int> cap(g);
Note: See TracChangeset for help on using the changeset viewer.