COIN-OR::LEMON - Graph Library

Changeset 2121:09a07a851506 in lemon-0.x for test/ugraph_test.cc


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

Modifications in the Graph Component concepts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/ugraph_test.cc

    r2116 r2121  
    3333
    3434void check_concepts() {
    35   checkConcept<UGraph, ListUGraph>();
    36 
    37   checkConcept<UGraph, SmartUGraph>();
    38 
    39   checkConcept<UGraph, FullUGraph>();
    40 
    41   checkConcept<UGraph, UGraph>();
    42 
    43   checkConcept<UGraph, GridUGraph>();
     35
     36  { // checking graph components
     37    checkConcept<BaseUGraphComponent, BaseUGraphComponent >();
     38
     39    checkConcept<BaseIterableUGraphComponent<>,
     40      BaseIterableUGraphComponent<> >();
     41
     42    checkConcept<IDableUGraphComponent<>,
     43      IDableUGraphComponent<> >();
     44
     45    checkConcept<IterableUGraphComponent<>,
     46      IterableUGraphComponent<> >();
     47
     48    checkConcept<MappableUGraphComponent<>,
     49      MappableUGraphComponent<> >();
     50
     51  }
     52  {
     53    checkConcept<UGraph, ListUGraph>();
     54   
     55    checkConcept<UGraph, SmartUGraph>();
     56   
     57    checkConcept<UGraph, FullUGraph>();
     58   
     59    checkConcept<UGraph, UGraph>();
     60   
     61    checkConcept<UGraph, GridUGraph>();
     62  }
    4463}
    4564
Note: See TracChangeset for help on using the changeset viewer.