equal
deleted
inserted
replaced
12 using namespace std; |
12 using namespace std; |
13 using namespace hugo; |
13 using namespace hugo; |
14 |
14 |
15 void checkCompileKruskal() |
15 void checkCompileKruskal() |
16 { |
16 { |
17 skeleton::WriteMap<skeleton::StaticGraphSkeleton::Edge,bool> w; |
17 skeleton::WriteMap<skeleton::StaticGraph::Edge,bool> w; |
18 |
18 |
19 kruskalEdgeMap(skeleton::StaticGraphSkeleton(), |
19 kruskalEdgeMap(skeleton::StaticGraph(), |
20 skeleton::ReadMap<skeleton::StaticGraphSkeleton::Edge,int>(), |
20 skeleton::ReadMap<skeleton::StaticGraph::Edge,int>(), |
21 w); |
21 w); |
22 } |
22 } |
23 |
23 |
24 int main() { |
24 int main() { |
25 |
25 |