diff -r 147eb3a58706 -r 9cd0aeea47b0 src/test/dijkstra_test.cc --- a/src/test/dijkstra_test.cc Thu Sep 02 17:56:40 2004 +0000 +++ b/src/test/dijkstra_test.cc Fri Sep 03 09:41:50 2004 +0000 @@ -1,22 +1,23 @@ #include "test_tools.h" #include #include - +#include +#include using namespace hugo; const int PET_SIZE =5; -void check_Dijkstra_SmartGraph_BinHeap_Compile() +void check_Dijkstra_BinHeap_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 skeleton::ReadMap LengthMap; typedef Dijkstra DType; @@ -28,7 +29,7 @@ DType::DistMap d(G); DType::PredMap p(G); DType::PredNodeMap pn(G); - LengthMap cap(G); + LengthMap cap; DType dijkstra_test(G,cap);