diff -r 32e4bebee616 -r 33db14058543 demo/coloring.cc --- a/demo/coloring.cc Tue Apr 04 17:43:23 2006 +0000 +++ b/demo/coloring.cc Tue Apr 04 17:45:35 2006 +0000 @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include @@ -63,7 +63,7 @@ Graph::NodeMap color(graph, -2); Graph::NodeMap heapMap(graph, -1); - LinearHeap > heap(heapMap); + BucketHeap > heap(heapMap); for (NodeIt it(graph); it != INVALID; ++it) { heap.push(it, countOutEdges(graph, it));