COIN-OR::LEMON - Graph Library

Changeset 1022:567f392d1d2e in lemon-0.x for src/test


Ignore:
Timestamp:
11/28/04 17:30:10 (20 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1412
Message:

UndirGraph? implementation nearly complete

Location:
src/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_test.cc

    r989 r1022  
    3030    checkConcept<BaseExtendableGraphComponent, BaseExtendableGraphComponent >();
    3131    checkConcept<BaseErasableGraphComponent, BaseErasableGraphComponent >();
    32     checkConcept<BaseClearableGraphComponent, BaseClearableGraphComponent >();
    3332
    3433    checkConcept<IterableGraphComponent, IterableGraphComponent >();
  • src/test/undir_graph_test.cc

    r962 r1022  
    1717  typedef UndirGraphExtender<ListGraphBase> UndirListGraphBase;
    1818
    19   function_requires< BaseIterableUndirGraphConcept<UndirListGraphBase> >();
    20 
    2119  typedef IterableUndirGraphExtender<
    2220    AlterableUndirGraphExtender<UndirListGraphBase> > IterableUndirListGraph;
    2321
    24   function_requires< IterableUndirGraphConcept<IterableUndirListGraph> >();
     22  typedef MappableUndirGraphExtender<IterableUndirListGraph>
     23    MappableUndirListGraph;
     24
     25  typedef ErasableUndirGraphExtender<
     26    ClearableUndirGraphExtender<
     27    ExtendableUndirGraphExtender<MappableUndirListGraph> > > Graph;
     28
     29  checkConcept<BaseIterableUndirGraphConcept, Graph>();
     30  checkConcept<IterableUndirGraphConcept, Graph>();
     31  checkConcept<MappableUndirGraphConcept, Graph>();
     32
     33  checkConcept<UndirGraph, Graph>();
     34  checkConcept<ErasableUndirGraph, Graph>();
    2535
    2636  return 0;
Note: See TracChangeset for help on using the changeset viewer.