Changeset 488:9b9ffe7d9b75 in lemon-main for test
- Timestamp:
- 02/13/09 13:29:28 (16 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r477 r488 11 11 12 12 SET(TESTS 13 #adaptors_test13 adaptors_test 14 14 bfs_test 15 15 circulation_test … … 19 19 dijkstra_test 20 20 dim_test 21 #edge_set_test21 edge_set_test 22 22 error_test 23 23 graph_copy_test -
test/edge_set_test.cc
r468 r488 34 34 35 35 void checkSmartArcSet() { 36 checkConcept<concepts::Digraph, SmartArcSet< concepts::Digraph> >();36 checkConcept<concepts::Digraph, SmartArcSet<ListDigraph> >(); 37 37 38 38 typedef ListDigraph Digraph; … … 100 100 101 101 void checkListArcSet() { 102 checkConcept<concepts::Digraph, SmartArcSet< concepts::Digraph> >();102 checkConcept<concepts::Digraph, SmartArcSet<ListDigraph> >(); 103 103 104 104 typedef ListDigraph Digraph; … … 180 180 181 181 void checkSmartEdgeSet() { 182 checkConcept<concepts::Digraph, SmartEdgeSet< concepts::Digraph> >();182 checkConcept<concepts::Digraph, SmartEdgeSet<ListDigraph> >(); 183 183 184 184 typedef ListDigraph Digraph; … … 264 264 265 265 void checkListEdgeSet() { 266 checkConcept<concepts::Digraph, ListEdgeSet< concepts::Digraph> >();266 checkConcept<concepts::Digraph, ListEdgeSet<ListDigraph> >(); 267 267 268 268 typedef ListDigraph Digraph;
Note: See TracChangeset
for help on using the changeset viewer.