src/work/marci/bfs_mm_test.cc
changeset 960 908a1a6f0752
parent 944 4f064aff855e
child 986 e997802b855c
equal deleted inserted replaced
0:b056f4167b73 1:f243717ba1da
    15  */
    15  */
    16 
    16 
    17 #include <test/test_tools.h>
    17 #include <test/test_tools.h>
    18 #include <lemon/smart_graph.h>
    18 #include <lemon/smart_graph.h>
    19 #include <bfs_mm.h>
    19 #include <bfs_mm.h>
    20 #include <lemon/skeletons/graph.h>
    20 #include <lemon/concept/graph.h>
    21 
    21 
    22 using namespace lemon;
    22 using namespace lemon;
    23 
    23 
    24 const int PET_SIZE =5;
    24 const int PET_SIZE =5;
    25 
    25 
    26 
    26 
    27 void check_Bfs_Compile() 
    27 void check_Bfs_Compile() 
    28 {
    28 {
    29   typedef skeleton::StaticGraph Graph;
    29   typedef concept::StaticGraph Graph;
    30 
    30 
    31   typedef Graph::Edge Edge;
    31   typedef Graph::Edge Edge;
    32   typedef Graph::Node Node;
    32   typedef Graph::Node Node;
    33   typedef Graph::EdgeIt EdgeIt;
    33   typedef Graph::EdgeIt EdgeIt;
    34   typedef Graph::NodeIt NodeIt;
    34   typedef Graph::NodeIt NodeIt;