Changeset 652:4dfa1f79bf3e in lemon-0.x for src/work/marci
- Timestamp:
- 05/20/04 19:21:55 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@852
- Location:
- src/work/marci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/graph_concept.h
r651 r652 457 457 }; 458 458 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 { 463 464 public: 464 465 FullFeatureGraphConcept() { } 466 using EdgeIterableGraphConcept::next; 467 using NodeIterableGraphConcept::next; 468 using OutEdgeIterableGraphConcept::next; 469 using InEdgeIterableGraphConcept::next; 465 470 }; 466 471 -
src/work/marci/max_flow_demo.cc
r651 r652 67 67 68 68 Graph g; 69 69 70 Node s, t; 70 71 Graph::EdgeMap<int> cap(g);
Note: See TracChangeset
for help on using the changeset viewer.