Changeset 1034:be6ee857b72d in lemon-0.x
- Timestamp:
- 12/09/04 16:30:12 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1424
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/list_graph.h
r1012 r1034 25 25 #include <lemon/clearable_graph_extender.h> 26 26 #include <lemon/extendable_graph_extender.h> 27 28 27 #include <lemon/iterable_graph_extender.h> 29 30 28 #include <lemon/alteration_observer_registry.h> 31 32 29 #include <lemon/default_map.h> 30 31 #include <lemon/undir_graph_extender.h> 33 32 34 33 #include <list> … … 502 501 503 502 }; 503 504 505 /**************** Undirected List Graph ****************/ 506 507 typedef ErasableUndirGraphExtender< 508 ClearableUndirGraphExtender< 509 ExtendableUndirGraphExtender< 510 MappableUndirGraphExtender< 511 IterableUndirGraphExtender< 512 AlterableUndirGraphExtender< 513 UndirGraphExtender<ListGraphBase> > > > > > > ErasableUndirListGraphBase; 514 515 class UndirListGraph : public ErasableUndirListGraphBase { 516 }; 517 504 518 505 519 /// @} -
src/lemon/smart_graph.h
r1011 r1034 32 32 #include <lemon/default_map.h> 33 33 34 #include <lemon/undir_graph_extender.h> 35 34 36 #include <lemon/utility.h> 35 37 … … 346 348 }; 347 349 }; 350 351 352 /**************** Undirected List Graph ****************/ 353 354 typedef ClearableUndirGraphExtender< 355 ExtendableUndirGraphExtender< 356 MappableUndirGraphExtender< 357 IterableUndirGraphExtender< 358 AlterableUndirGraphExtender< 359 UndirGraphExtender<SmartGraphBase> > > > > > UndirSmartGraphBase; 360 361 class UndirSmartGraph : public UndirSmartGraphBase { 362 }; 363 348 364 349 365 /// @} -
src/test/undir_graph_test.cc
r1030 r1034 34 34 checkConcept<ErasableUndirGraph, Graph>(); 35 35 36 checkConcept<UndirGraph, UndirListGraph>(); 37 checkConcept<ErasableUndirGraph, UndirListGraph>(); 38 39 checkConcept<UndirGraph, UndirSmartGraph>(); 40 checkConcept<ExtendableUndirGraph, UndirSmartGraph>(); 41 36 42 checkConcept<UndirGraph, UndirGraph>(); 37 43
Note: See TracChangeset
for help on using the changeset viewer.