diff -r 147eb3a58706 -r 9cd0aeea47b0 src/test/dfs_test.cc --- a/src/test/dfs_test.cc Thu Sep 02 17:56:40 2004 +0000 +++ b/src/test/dfs_test.cc Fri Sep 03 09:41:50 2004 +0000 @@ -1,6 +1,7 @@ #include "test_tools.h" #include #include +#include using namespace hugo; @@ -9,28 +10,25 @@ void check_Dfs_SmartGraph_Compile() { - typedef int VType; - typedef SmartGraph Graph; + typedef skeleton::StaticGraphSkeleton Graph; typedef Graph::Edge Edge; typedef Graph::Node Node; typedef Graph::EdgeIt EdgeIt; typedef Graph::NodeIt NodeIt; - typedef Graph::EdgeMap LengthMap; - typedef Dfs BType; + typedef Dfs DType; Graph G; Node n; Edge e; - VType l; + int l; bool b; - BType::DistMap d(G); - BType::PredMap p(G); - BType::PredNodeMap pn(G); - LengthMap cap(G); + DType::DistMap d(G); + DType::PredMap p(G); + DType::PredNodeMap pn(G); - BType dfs_test(G); + DType dfs_test(G); dfs_test.run(n);