test/graph_test.cc
changeset 1751 a2a454f1232d
parent 1435 8e85e6bbefdf
child 1956 a055123339d5
equal deleted inserted replaced
0:1db269de159c 1:8810b72c24cb
     5 
     5 
     6 #include <lemon/concept/graph.h>
     6 #include <lemon/concept/graph.h>
     7 #include <lemon/list_graph.h>
     7 #include <lemon/list_graph.h>
     8 #include <lemon/smart_graph.h>
     8 #include <lemon/smart_graph.h>
     9 #include <lemon/full_graph.h>
     9 #include <lemon/full_graph.h>
       
    10 #include <lemon/hypercube_graph.h>
    10 
    11 
    11 #include "test_tools.h"
    12 #include "test_tools.h"
    12 #include "graph_test.h"
    13 #include "graph_test.h"
    13 #include "map_test.h"
    14 #include "map_test.h"
    14 
    15 
    57     checkGraphEdgeMap<SmartGraph>();
    58     checkGraphEdgeMap<SmartGraph>();
    58   }
    59   }
    59   { // checking full graph
    60   { // checking full graph
    60     checkConcept<StaticGraph, FullGraph >();
    61     checkConcept<StaticGraph, FullGraph >();
    61   }
    62   }
       
    63   { // checking full graph
       
    64     checkConcept<StaticGraph, HyperCubeGraph >();
       
    65   }
    62 
    66 
    63   std::cout << __FILE__ ": All tests passed.\n";
    67   std::cout << __FILE__ ": All tests passed.\n";
    64 
    68 
    65   return 0;
    69   return 0;
    66 }
    70 }