test/graph_test.cc
changeset 2111 ea1fa1bc3f6d
parent 1956 a055123339d5
child 2121 09a07a851506
     1.1 --- a/test/graph_test.cc	Mon Jun 26 15:40:35 2006 +0000
     1.2 +++ b/test/graph_test.cc	Wed Jun 28 15:06:24 2006 +0000
     1.3 @@ -43,41 +43,33 @@
     1.4      checkConcept<IDableGraphComponent, IDableGraphComponent >();
     1.5      checkConcept<MaxIDableGraphComponent, MaxIDableGraphComponent >();
     1.6  
     1.7 -    checkConcept<BaseExtendableGraphComponent, BaseExtendableGraphComponent >();
     1.8 -    checkConcept<BaseErasableGraphComponent, BaseErasableGraphComponent >();
     1.9 -
    1.10      checkConcept<IterableGraphComponent, IterableGraphComponent >();
    1.11  
    1.12      checkConcept<MappableGraphComponent, MappableGraphComponent >();
    1.13  
    1.14 -    checkConcept<ExtendableGraphComponent, ExtendableGraphComponent >();
    1.15 -    checkConcept<ErasableGraphComponent, ErasableGraphComponent >();
    1.16 -    checkConcept<ClearableGraphComponent, ClearableGraphComponent >();
    1.17    }
    1.18    { // checking skeleton graphs
    1.19 -    checkConcept<StaticGraph, StaticGraph >();
    1.20 -    checkConcept<ExtendableGraph, ExtendableGraph >();
    1.21 -    checkConcept<ErasableGraph, ErasableGraph >();
    1.22 +    checkConcept<Graph, Graph >();
    1.23    }
    1.24    { // checking list graph
    1.25 -    checkConcept<ErasableGraph, ListGraph >();
    1.26 +    checkConcept<Graph, ListGraph >();
    1.27  
    1.28      checkGraph<ListGraph>();
    1.29      checkGraphNodeMap<ListGraph>();
    1.30      checkGraphEdgeMap<ListGraph>();
    1.31    }
    1.32    { // checking smart graph
    1.33 -    checkConcept<ExtendableGraph, SmartGraph >();
    1.34 +    checkConcept<Graph, SmartGraph >();
    1.35  
    1.36      checkGraph<SmartGraph>();
    1.37      checkGraphNodeMap<SmartGraph>();
    1.38      checkGraphEdgeMap<SmartGraph>();
    1.39    }
    1.40    { // checking full graph
    1.41 -    checkConcept<StaticGraph, FullGraph >();
    1.42 +    checkConcept<Graph, FullGraph >();
    1.43    }
    1.44    { // checking full graph
    1.45 -    checkConcept<StaticGraph, HyperCubeGraph >();
    1.46 +    checkConcept<Graph, HyperCubeGraph >();
    1.47    }
    1.48  
    1.49    std::cout << __FILE__ ": All tests passed.\n";