COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/23/05 18:59:49 (19 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1836
Message:

A new implementation of UndirGraphWrapper?, accordig to the undirected concepts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/test/graph_wrapper_test.cc

    r1359 r1383  
    2020#include<lemon/smart_graph.h>
    2121#include<lemon/concept/graph.h>
     22#include<lemon/concept/undir_graph.h>
    2223
    2324#include<lemon/list_graph.h>
     
    6364    checkConcept<StaticGraph, ErasingFirstGraphWrapper<Graph,
    6465      Graph::NodeMap<Graph::Edge> > >();
     66
     67    /// \bug why does not compile with StaticGraph
     68    checkConcept<BaseIterableUndirGraphConcept, UndirGraphWrapper<ListGraph> >();
     69    checkConcept<IterableUndirGraphConcept, UndirGraphWrapper<ListGraph> >();
     70    checkConcept<MappableUndirGraphConcept, UndirGraphWrapper<ListGraph> >();
    6571  }
    6672  std::cout << __FILE__ ": All tests passed.\n";
Note: See TracChangeset for help on using the changeset viewer.