src/test/dfs_test.cc
changeset 961 289d80c33f04
parent 921 818510fa3d99
child 986 e997802b855c
equal deleted inserted replaced
4:2df9d04b6449 5:40bc4cccbb45
    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/dfs.h>
    19 #include <lemon/dfs.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_Dfs_SmartGraph_Compile() 
    27 void check_Dfs_SmartGraph_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;