COIN-OR::LEMON - Graph Library

Changeset 2111:ea1fa1bc3f6d in lemon-0.x for test/graph_test.cc


Ignore:
Timestamp:
06/28/06 17:06:24 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2817
Message:

Removing concepts for extendable and erasable graphs
Renaming StaticGraph? to Graph

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/graph_test.cc

    r1956 r2111  
    4444    checkConcept<MaxIDableGraphComponent, MaxIDableGraphComponent >();
    4545
    46     checkConcept<BaseExtendableGraphComponent, BaseExtendableGraphComponent >();
    47     checkConcept<BaseErasableGraphComponent, BaseErasableGraphComponent >();
    48 
    4946    checkConcept<IterableGraphComponent, IterableGraphComponent >();
    5047
    5148    checkConcept<MappableGraphComponent, MappableGraphComponent >();
    5249
    53     checkConcept<ExtendableGraphComponent, ExtendableGraphComponent >();
    54     checkConcept<ErasableGraphComponent, ErasableGraphComponent >();
    55     checkConcept<ClearableGraphComponent, ClearableGraphComponent >();
    5650  }
    5751  { // checking skeleton graphs
    58     checkConcept<StaticGraph, StaticGraph >();
    59     checkConcept<ExtendableGraph, ExtendableGraph >();
    60     checkConcept<ErasableGraph, ErasableGraph >();
     52    checkConcept<Graph, Graph >();
    6153  }
    6254  { // checking list graph
    63     checkConcept<ErasableGraph, ListGraph >();
     55    checkConcept<Graph, ListGraph >();
    6456
    6557    checkGraph<ListGraph>();
     
    6860  }
    6961  { // checking smart graph
    70     checkConcept<ExtendableGraph, SmartGraph >();
     62    checkConcept<Graph, SmartGraph >();
    7163
    7264    checkGraph<SmartGraph>();
     
    7567  }
    7668  { // checking full graph
    77     checkConcept<StaticGraph, FullGraph >();
     69    checkConcept<Graph, FullGraph >();
    7870  }
    7971  { // checking full graph
    80     checkConcept<StaticGraph, HyperCubeGraph >();
     72    checkConcept<Graph, HyperCubeGraph >();
    8173  }
    8274
Note: See TracChangeset for help on using the changeset viewer.