test/graph_test.cc
changeset 2334 c1e936e6a46b
parent 2231 06faf3f06d67
child 2391 14a343be7a5a
equal deleted inserted replaced
5:32794a6e56f2 6:884af980112c
    17  */
    17  */
    18 
    18 
    19 #include <iostream>
    19 #include <iostream>
    20 #include <vector>
    20 #include <vector>
    21 
    21 
    22 #include <lemon/concept/graph.h>
    22 #include <lemon/concepts/graph.h>
    23 #include <lemon/list_graph.h>
    23 #include <lemon/list_graph.h>
    24 #include <lemon/smart_graph.h>
    24 #include <lemon/smart_graph.h>
    25 #include <lemon/full_graph.h>
    25 #include <lemon/full_graph.h>
    26 #include <lemon/hypercube_graph.h>
    26 #include <lemon/hypercube_graph.h>
    27 
    27 
    29 #include "graph_test.h"
    29 #include "graph_test.h"
    30 #include "map_test.h"
    30 #include "map_test.h"
    31 
    31 
    32 
    32 
    33 using namespace lemon;
    33 using namespace lemon;
    34 using namespace lemon::concept;
    34 using namespace lemon::concepts;
    35 
    35 
    36 
    36 
    37 int main() {
    37 int main() {
    38   { // checking graph components
    38   { // checking graph components
    39     checkConcept<BaseGraphComponent, BaseGraphComponent >();
    39     checkConcept<BaseGraphComponent, BaseGraphComponent >();