diff -r 147eb3a58706 -r 9cd0aeea47b0 src/test/bfs_test.cc --- a/src/test/bfs_test.cc Thu Sep 02 17:56:40 2004 +0000 +++ b/src/test/bfs_test.cc Fri Sep 03 09:41:50 2004 +0000 @@ -1,34 +1,32 @@ #include "test_tools.h" #include #include +#include using namespace hugo; const int PET_SIZE =5; -void check_Bfs_SmartGraph_Compile() +void check_Bfs_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 Bfs BType; 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); BType bfs_test(G);