Changeset 2111:ea1fa1bc3f6d in lemon-0.x for test/graph_test.cc
- Timestamp:
- 06/28/06 17:06:24 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2817
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/graph_test.cc
r1956 r2111 44 44 checkConcept<MaxIDableGraphComponent, MaxIDableGraphComponent >(); 45 45 46 checkConcept<BaseExtendableGraphComponent, BaseExtendableGraphComponent >();47 checkConcept<BaseErasableGraphComponent, BaseErasableGraphComponent >();48 49 46 checkConcept<IterableGraphComponent, IterableGraphComponent >(); 50 47 51 48 checkConcept<MappableGraphComponent, MappableGraphComponent >(); 52 49 53 checkConcept<ExtendableGraphComponent, ExtendableGraphComponent >();54 checkConcept<ErasableGraphComponent, ErasableGraphComponent >();55 checkConcept<ClearableGraphComponent, ClearableGraphComponent >();56 50 } 57 51 { // checking skeleton graphs 58 checkConcept<StaticGraph, StaticGraph >(); 59 checkConcept<ExtendableGraph, ExtendableGraph >(); 60 checkConcept<ErasableGraph, ErasableGraph >(); 52 checkConcept<Graph, Graph >(); 61 53 } 62 54 { // checking list graph 63 checkConcept< ErasableGraph, ListGraph >();55 checkConcept<Graph, ListGraph >(); 64 56 65 57 checkGraph<ListGraph>(); … … 68 60 } 69 61 { // checking smart graph 70 checkConcept< ExtendableGraph, SmartGraph >();62 checkConcept<Graph, SmartGraph >(); 71 63 72 64 checkGraph<SmartGraph>(); … … 75 67 } 76 68 { // checking full graph 77 checkConcept< StaticGraph, FullGraph >();69 checkConcept<Graph, FullGraph >(); 78 70 } 79 71 { // checking full graph 80 checkConcept< StaticGraph, HyperCubeGraph >();72 checkConcept<Graph, HyperCubeGraph >(); 81 73 } 82 74
Note: See TracChangeset
for help on using the changeset viewer.