test/bpugraph_test.cc
changeset 2260 4274224f8a7d
parent 2231 06faf3f06d67
child 2391 14a343be7a5a
equal deleted inserted replaced
0:8bb376372f37 1:8d65e48ae6a2
    14  * express or implied, and with no claim as to its suitability for any
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    15  * purpose.
    16  *
    16  *
    17  */
    17  */
    18 
    18 
    19 #include <lemon/concept/bpugraph.h>
    19 #include <lemon/concepts/bpugraph.h>
    20 #include <lemon/list_graph.h>
    20 #include <lemon/list_graph.h>
    21 #include <lemon/smart_graph.h>
    21 #include <lemon/smart_graph.h>
    22 #include <lemon/full_graph.h>
    22 #include <lemon/full_graph.h>
    23 #include <lemon/grid_ugraph.h>
    23 #include <lemon/grid_ugraph.h>
    24 
    24 
    26 
    26 
    27 #include "test_tools.h"
    27 #include "test_tools.h"
    28 
    28 
    29 
    29 
    30 using namespace lemon;
    30 using namespace lemon;
    31 using namespace lemon::concept;
    31 using namespace lemon::concepts;
    32 
    32 
    33 void check_concepts() {
    33 void check_concepts() {
    34 
    34 
    35   { // checking graph components
    35   { // checking graph components
    36     checkConcept<BaseBpUGraphComponent, BaseBpUGraphComponent >();
    36     checkConcept<BaseBpUGraphComponent, BaseBpUGraphComponent >();