COIN-OR::LEMON - Graph Library

Changeset 512:9b9ffe7d9b75 in lemon-1.2 for test


Ignore:
Timestamp:
02/13/09 13:29:28 (15 years ago)
Author:
Balazs Dezso <deba@…>
Branch:
default
Phase:
public
Message:

Fixes for MSVC 2008 in grap_adaptors.h and edge_set.h (#194)

Several renamings and changes in adaptors and edge sets

Location:
test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r507 r512  
    1111
    1212SET(TESTS
    13 #   adaptors_test
     13  adaptors_test
    1414  bfs_test
    1515  circulation_test
     
    1919  dijkstra_test
    2020  dim_test
    21 #   edge_set_test
     21  edge_set_test
    2222  error_test
    2323  graph_copy_test
  • test/edge_set_test.cc

    r468 r512  
    3434
    3535void checkSmartArcSet() {
    36   checkConcept<concepts::Digraph, SmartArcSet<concepts::Digraph> >();
     36  checkConcept<concepts::Digraph, SmartArcSet<ListDigraph> >();
    3737
    3838  typedef ListDigraph Digraph;
     
    100100
    101101void checkListArcSet() {
    102   checkConcept<concepts::Digraph, SmartArcSet<concepts::Digraph> >();
     102  checkConcept<concepts::Digraph, SmartArcSet<ListDigraph> >();
    103103
    104104  typedef ListDigraph Digraph;
     
    180180
    181181void checkSmartEdgeSet() {
    182   checkConcept<concepts::Digraph, SmartEdgeSet<concepts::Digraph> >();
     182  checkConcept<concepts::Digraph, SmartEdgeSet<ListDigraph> >();
    183183
    184184  typedef ListDigraph Digraph;
     
    264264
    265265void checkListEdgeSet() {
    266   checkConcept<concepts::Digraph, ListEdgeSet<concepts::Digraph> >();
     266  checkConcept<concepts::Digraph, ListEdgeSet<ListDigraph> >();
    267267
    268268  typedef ListDigraph Digraph;
Note: See TracChangeset for help on using the changeset viewer.