src/test/bfs_test.cc
changeset 959 c80ef5912903
parent 921 818510fa3d99
child 986 e997802b855c
equal deleted inserted replaced
5:13cadfe089bc 6:3a711f722d2e
    15  */
    15  */
    16 
    16 
    17 #include "test_tools.h"
    17 #include "test_tools.h"
    18 #include <lemon/smart_graph.h>
    18 #include <lemon/smart_graph.h>
    19 #include <lemon/bfs.h>
    19 #include <lemon/bfs.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;